diff options
Diffstat (limited to 'arch/h8300')
-rw-r--r-- | arch/h8300/kernel/ints.c | 2 | ||||
-rw-r--r-- | arch/h8300/platform/h8s/ints.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/arch/h8300/kernel/ints.c b/arch/h8300/kernel/ints.c index 1bfc77e391d5..587ef7f4fcc7 100644 --- a/arch/h8300/kernel/ints.c +++ b/arch/h8300/kernel/ints.c | |||
@@ -141,7 +141,7 @@ int request_irq(unsigned int irq, | |||
141 | return -EBUSY; | 141 | return -EBUSY; |
142 | 142 | ||
143 | if (use_kmalloc) | 143 | if (use_kmalloc) |
144 | irq_handle = (irq_handler_t *)kmalloc(sizeof(irq_handler_t), GFP_ATOMIC); | 144 | irq_handle = kmalloc(sizeof(irq_handler_t), GFP_ATOMIC); |
145 | else { | 145 | else { |
146 | /* use bootmem allocater */ | 146 | /* use bootmem allocater */ |
147 | irq_handle = (irq_handler_t *)alloc_bootmem(sizeof(irq_handler_t)); | 147 | irq_handle = (irq_handler_t *)alloc_bootmem(sizeof(irq_handler_t)); |
diff --git a/arch/h8300/platform/h8s/ints.c b/arch/h8300/platform/h8s/ints.c index 270440de4610..567f681ddfec 100644 --- a/arch/h8300/platform/h8s/ints.c +++ b/arch/h8300/platform/h8s/ints.c | |||
@@ -176,7 +176,7 @@ int request_irq(unsigned int irq, | |||
176 | } | 176 | } |
177 | 177 | ||
178 | if (use_kmalloc) | 178 | if (use_kmalloc) |
179 | irq_handle = (irq_handler_t *)kmalloc(sizeof(irq_handler_t), GFP_ATOMIC); | 179 | irq_handle = kmalloc(sizeof(irq_handler_t), GFP_ATOMIC); |
180 | else { | 180 | else { |
181 | /* use bootmem allocater */ | 181 | /* use bootmem allocater */ |
182 | irq_handle = (irq_handler_t *)alloc_bootmem(sizeof(irq_handler_t)); | 182 | irq_handle = (irq_handler_t *)alloc_bootmem(sizeof(irq_handler_t)); |