Re: [Patch 08/16] Remove unnecessary kmalloc casts in the parisc drivers.

2007-07-31 Thread Christian Borntraeger
Am Dienstag, 31. Juli 2007 schrieb [EMAIL PROTECTED]: > - a = (unsigned long)kmalloc(sizeof(struct irt_entry) * num_entries + 8, GFP_KERNEL); > + a = kmalloc(sizeof(struct irt_entry) * num_entries + 8, GFP_KERNEL); NAK. Same as in some other patches. "void *" -> "ulong" is not auto casted

[Patch 08/16] Remove unnecessary kmalloc casts in the parisc drivers.

2007-07-31 Thread jack
Signed-off-by: Jack Stone <[EMAIL PROTECTED]> CC: Matthew Wilcox <[EMAIL PROTECTED]> --- drivers/parisc/iosapic.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: b/drivers/parisc/iosapic.c === --- a/drivers/parisc/i