diff options
Diffstat (limited to 'drivers/pci/hotplug/pciehp_hpc.c')
-rw-r--r-- | drivers/pci/hotplug/pciehp_hpc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/pci/hotplug/pciehp_hpc.c b/drivers/pci/hotplug/pciehp_hpc.c index 6ab3b6cd2b54..703a64a39fe8 100644 --- a/drivers/pci/hotplug/pciehp_hpc.c +++ b/drivers/pci/hotplug/pciehp_hpc.c | |||
@@ -222,7 +222,7 @@ static struct php_ctlr_state_s *php_ctlr_list_head; /* HPC state linked list */ | |||
222 | static int ctlr_seq_num = 0; /* Controller sequence # */ | 222 | static int ctlr_seq_num = 0; /* Controller sequence # */ |
223 | static spinlock_t list_lock; | 223 | static spinlock_t list_lock; |
224 | 224 | ||
225 | static irqreturn_t pcie_isr(int IRQ, void *dev_id, struct pt_regs *regs); | 225 | static irqreturn_t pcie_isr(int IRQ, void *dev_id); |
226 | 226 | ||
227 | static void start_int_poll_timer(struct php_ctlr_state_s *php_ctlr, int seconds); | 227 | static void start_int_poll_timer(struct php_ctlr_state_s *php_ctlr, int seconds); |
228 | 228 | ||
@@ -239,7 +239,7 @@ static void int_poll_timeout(unsigned long lphp_ctlr) | |||
239 | } | 239 | } |
240 | 240 | ||
241 | /* Poll for interrupt events. regs == NULL => polling */ | 241 | /* Poll for interrupt events. regs == NULL => polling */ |
242 | pcie_isr( 0, (void *)php_ctlr, NULL ); | 242 | pcie_isr( 0, (void *)php_ctlr ); |
243 | 243 | ||
244 | init_timer(&php_ctlr->int_poll_timer); | 244 | init_timer(&php_ctlr->int_poll_timer); |
245 | 245 | ||
@@ -863,7 +863,7 @@ static int hpc_power_off_slot(struct slot * slot) | |||
863 | return retval; | 863 | return retval; |
864 | } | 864 | } |
865 | 865 | ||
866 | static irqreturn_t pcie_isr(int IRQ, void *dev_id, struct pt_regs *regs) | 866 | static irqreturn_t pcie_isr(int IRQ, void *dev_id) |
867 | { | 867 | { |
868 | struct controller *ctrl = NULL; | 868 | struct controller *ctrl = NULL; |
869 | struct php_ctlr_state_s *php_ctlr; | 869 | struct php_ctlr_state_s *php_ctlr; |