diff options
author | Jeff Garzik <jeff@garzik.org> | 2008-04-18 19:22:58 -0400 |
---|---|---|
committer | Tony Luck <tony.luck@intel.com> | 2008-04-22 08:56:58 -0700 |
commit | 9010eff0eadfe4eb60c3f0c71573f0fc505c31e3 (patch) | |
tree | d4c6b2f81f6677bf0e457089e5bdd7449070d666 /arch/ia64/sn/kernel | |
parent | 4fa2f0e672ba16b55a34ecfa514ccd92e226d3d4 (diff) | |
download | linux-9010eff0eadfe4eb60c3f0c71573f0fc505c31e3.tar.gz linux-9010eff0eadfe4eb60c3f0c71573f0fc505c31e3.tar.bz2 linux-9010eff0eadfe4eb60c3f0c71573f0fc505c31e3.zip |
[IA64] minor irq handler cleanups
- remove unused 'irq' argument from pfm_do_interrupt_handler()
- remove pointless cast to void*
- add KERN_xxx prefix to printk()
- remove braces around singleton C statement
- in tioce_provider.c, start tioce_dma_consistent() and
tioce_error_intr_handler() function declarations in column 0
This change's main purpose is to prepare for the patchset in
jgarzik/misc-2.6.git#irq-remove, that explores removal of the
never-used 'irq' argument in each interrupt handler.
Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
Signed-off-by: Tony Luck <tony.luck@intel.com>
Diffstat (limited to 'arch/ia64/sn/kernel')
-rw-r--r-- | arch/ia64/sn/kernel/huberror.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/ia64/sn/kernel/huberror.c b/arch/ia64/sn/kernel/huberror.c index 0101c7924a4d..08b0d9bb62ec 100644 --- a/arch/ia64/sn/kernel/huberror.c +++ b/arch/ia64/sn/kernel/huberror.c @@ -187,8 +187,8 @@ void hub_error_init(struct hubdev_info *hubdev_info) { if (request_irq(SGI_II_ERROR, hub_eint_handler, IRQF_SHARED, - "SN_hub_error", (void *)hubdev_info)) { - printk("hub_error_init: Failed to request_irq for 0x%p\n", + "SN_hub_error", hubdev_info)) { + printk(KERN_ERR "hub_error_init: Failed to request_irq for 0x%p\n", hubdev_info); return; } |