Re: [PATCH] DRM fixed compilation errors and warnings for 2.6.26

2008-07-25 Thread nagaraj s k
Hello All, Sorry for the delay in sending the updated patch.I appreciate your time to review and comment on the same. Fixed the conditional operator and its logic for checking the allocation of memory , white space between the pointers and cleaned up few warnings. Signed-off-by : Nagaraj SK <[

Re: [PATCH] DRM fixed compilation errors and warnings for 2.6.26

2008-07-20 Thread nagaraj s k
Hi Daniel, Thanks for correcting me, i will work on this and try sending the patch soon with the mentioned changes. On Sun, Jul 20, 2008 at 12:05 AM, Daniel Stone <[EMAIL PROTECTED]> wrote: > On Sat, Jul 19, 2008 at 11:16:58PM +0530, nagaraj s k wrote: > > @@ -69,7 +69,7 @@ void *drm_realloc(voi

Re: [PATCH] DRM fixed compilation errors and warnings for 2.6.26

2008-07-20 Thread Bruno Prémont
On Sat, 19 July 2008 "nagaraj s k" <[EMAIL PROTECTED]> wrote: > Hi ALL, > > Sorry about repetitive mails, i forgot to add the main mail list, > getting used to the procedure to send patches. > > This is my second submission (looks like first mail lost in the > malling list 10 days earlier). I did

Re: [PATCH] DRM fixed compilation errors and warnings for 2.6.26

2008-07-19 Thread Daniel Stone
On Sat, Jul 19, 2008 at 11:16:58PM +0530, nagaraj s k wrote: > @@ -69,7 +69,7 @@ void *drm_realloc(void *oldpt, size_t ol > { > void *pt; > > -if (!(pt = kmalloc(size, GFP_KERNEL))) > +if (!(pt == kmalloc(size, GFP_KERNEL))) > return NULL; > if (oldpt && oldsize) { >

[PATCH] DRM fixed compilation errors and warnings for 2.6.26

2008-07-19 Thread nagaraj s k
Hi ALL, Sorry about repetitive mails, i forgot to add the main mail list, getting used to the procedure to send patches. This is my second submission (looks like first mail lost in the malling list 10 days earlier). I did my best to follow the guidelines put forth for newbies. Please feel free fo