diff options
Diffstat (limited to 'drivers/pci/hotplug/shpchp_hpc.c')
-rw-r--r-- | drivers/pci/hotplug/shpchp_hpc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/pci/hotplug/shpchp_hpc.c b/drivers/pci/hotplug/shpchp_hpc.c index 0f9798df4704..4d8aee119134 100644 --- a/drivers/pci/hotplug/shpchp_hpc.c +++ b/drivers/pci/hotplug/shpchp_hpc.c | |||
@@ -218,7 +218,7 @@ static spinlock_t list_lock; | |||
218 | 218 | ||
219 | static atomic_t shpchp_num_controllers = ATOMIC_INIT(0); | 219 | static atomic_t shpchp_num_controllers = ATOMIC_INIT(0); |
220 | 220 | ||
221 | static irqreturn_t shpc_isr(int irq, void *dev_id, struct pt_regs *regs); | 221 | static irqreturn_t shpc_isr(int irq, void *dev_id); |
222 | static void start_int_poll_timer(struct php_ctlr_state_s *php_ctlr, int sec); | 222 | static void start_int_poll_timer(struct php_ctlr_state_s *php_ctlr, int sec); |
223 | static int hpc_check_cmd_status(struct controller *ctrl); | 223 | static int hpc_check_cmd_status(struct controller *ctrl); |
224 | 224 | ||
@@ -276,7 +276,7 @@ static void int_poll_timeout(unsigned long lphp_ctlr) | |||
276 | DBG_ENTER_ROUTINE | 276 | DBG_ENTER_ROUTINE |
277 | 277 | ||
278 | /* Poll for interrupt events. regs == NULL => polling */ | 278 | /* Poll for interrupt events. regs == NULL => polling */ |
279 | shpc_isr(0, php_ctlr->callback_instance_id, NULL); | 279 | shpc_isr(0, php_ctlr->callback_instance_id); |
280 | 280 | ||
281 | init_timer(&php_ctlr->int_poll_timer); | 281 | init_timer(&php_ctlr->int_poll_timer); |
282 | if (!shpchp_poll_time) | 282 | if (!shpchp_poll_time) |
@@ -870,7 +870,7 @@ static int hpc_set_bus_speed_mode(struct slot * slot, enum pci_bus_speed value) | |||
870 | return retval; | 870 | return retval; |
871 | } | 871 | } |
872 | 872 | ||
873 | static irqreturn_t shpc_isr(int irq, void *dev_id, struct pt_regs *regs) | 873 | static irqreturn_t shpc_isr(int irq, void *dev_id) |
874 | { | 874 | { |
875 | struct controller *ctrl = (struct controller *)dev_id; | 875 | struct controller *ctrl = (struct controller *)dev_id; |
876 | struct php_ctlr_state_s *php_ctlr = ctrl->hpc_ctlr_handle; | 876 | struct php_ctlr_state_s *php_ctlr = ctrl->hpc_ctlr_handle; |