diff mbox

[3/4] PCI: pciehp: Rename queue_interrupt_event() to pciehp_queue_interrupt_event()

Message ID 20150618161251.32739.37707.stgit@bhelgaas-glaptop2.roam.corp.google.com (mailing list archive)
State New, archived
Delegated to: Bjorn Helgaas
Headers show

Commit Message

Bjorn Helgaas June 18, 2015, 4:12 p.m. UTC
Rename queue_interrupt_event() to pciehp_queue_interrupt_event() so we can
make it extern and call it from pcie_isr().

No functional change.

Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
---
 drivers/pci/hotplug/pciehp_ctrl.c |   12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)


--
To unsubscribe from this list: send the line "unsubscribe linux-pci" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Comments

Rajat Jain June 18, 2015, 5:59 p.m. UTC | #1
On Thu, Jun 18, 2015 at 9:12 AM, Bjorn Helgaas <bhelgaas@google.com> wrote:
> Rename queue_interrupt_event() to pciehp_queue_interrupt_event() so we can
> make it extern and call it from pcie_isr().
>
> No functional change.
>
> Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>

Ok to add:
Reviewed-by: Rajat Jain <rajatja@google.com>

> ---
>  drivers/pci/hotplug/pciehp_ctrl.c |   12 ++++++------
>  1 file changed, 6 insertions(+), 6 deletions(-)
>
> diff --git a/drivers/pci/hotplug/pciehp_ctrl.c b/drivers/pci/hotplug/pciehp_ctrl.c
> index 1086041..7ed37dc 100644
> --- a/drivers/pci/hotplug/pciehp_ctrl.c
> +++ b/drivers/pci/hotplug/pciehp_ctrl.c
> @@ -37,7 +37,7 @@
>
>  static void interrupt_event_handler(struct work_struct *work);
>
> -static void queue_interrupt_event(struct slot *p_slot, u32 event_type)
> +static void pciehp_queue_interrupt_event(struct slot *p_slot, u32 event_type)
>  {
>         struct event_info *info;
>
> @@ -64,7 +64,7 @@ u8 pciehp_handle_attention_button(struct slot *p_slot)
>         ctrl_info(ctrl, "Button pressed on Slot(%s)\n", slot_name(p_slot));
>         event_type = INT_BUTTON_PRESS;
>
> -       queue_interrupt_event(p_slot, event_type);
> +       pciehp_queue_interrupt_event(p_slot, event_type);
>
>         return 0;
>  }
> @@ -90,7 +90,7 @@ u8 pciehp_handle_switch_change(struct slot *p_slot)
>                 event_type = INT_SWITCH_CLOSE;
>         }
>
> -       queue_interrupt_event(p_slot, event_type);
> +       pciehp_queue_interrupt_event(p_slot, event_type);
>
>         return 1;
>  }
> @@ -120,7 +120,7 @@ u8 pciehp_handle_presence_change(struct slot *p_slot)
>                 event_type = INT_PRESENCE_OFF;
>         }
>
> -       queue_interrupt_event(p_slot, event_type);
> +       pciehp_queue_interrupt_event(p_slot, event_type);
>
>         return 1;
>  }
> @@ -133,7 +133,7 @@ u8 pciehp_handle_power_fault(struct slot *p_slot)
>         ctrl_err(ctrl, "Power fault on slot %s\n", slot_name(p_slot));
>         event_type = INT_POWER_FAULT;
>         ctrl_info(ctrl, "Power fault bit %x set\n", 0);
> -       queue_interrupt_event(p_slot, event_type);
> +       pciehp_queue_interrupt_event(p_slot, event_type);
>
>         return 1;
>  }
> @@ -153,7 +153,7 @@ void pciehp_handle_linkstate_change(struct slot *p_slot)
>                 event_type = INT_LINK_DOWN;
>         }
>
> -       queue_interrupt_event(p_slot, event_type);
> +       pciehp_queue_interrupt_event(p_slot, event_type);
>  }
>
>  /* The following routines constitute the bulk of the
>
--
To unsubscribe from this list: send the line "unsubscribe linux-pci" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/drivers/pci/hotplug/pciehp_ctrl.c b/drivers/pci/hotplug/pciehp_ctrl.c
index 1086041..7ed37dc 100644
--- a/drivers/pci/hotplug/pciehp_ctrl.c
+++ b/drivers/pci/hotplug/pciehp_ctrl.c
@@ -37,7 +37,7 @@ 
 
 static void interrupt_event_handler(struct work_struct *work);
 
-static void queue_interrupt_event(struct slot *p_slot, u32 event_type)
+static void pciehp_queue_interrupt_event(struct slot *p_slot, u32 event_type)
 {
 	struct event_info *info;
 
@@ -64,7 +64,7 @@  u8 pciehp_handle_attention_button(struct slot *p_slot)
 	ctrl_info(ctrl, "Button pressed on Slot(%s)\n", slot_name(p_slot));
 	event_type = INT_BUTTON_PRESS;
 
-	queue_interrupt_event(p_slot, event_type);
+	pciehp_queue_interrupt_event(p_slot, event_type);
 
 	return 0;
 }
@@ -90,7 +90,7 @@  u8 pciehp_handle_switch_change(struct slot *p_slot)
 		event_type = INT_SWITCH_CLOSE;
 	}
 
-	queue_interrupt_event(p_slot, event_type);
+	pciehp_queue_interrupt_event(p_slot, event_type);
 
 	return 1;
 }
@@ -120,7 +120,7 @@  u8 pciehp_handle_presence_change(struct slot *p_slot)
 		event_type = INT_PRESENCE_OFF;
 	}
 
-	queue_interrupt_event(p_slot, event_type);
+	pciehp_queue_interrupt_event(p_slot, event_type);
 
 	return 1;
 }
@@ -133,7 +133,7 @@  u8 pciehp_handle_power_fault(struct slot *p_slot)
 	ctrl_err(ctrl, "Power fault on slot %s\n", slot_name(p_slot));
 	event_type = INT_POWER_FAULT;
 	ctrl_info(ctrl, "Power fault bit %x set\n", 0);
-	queue_interrupt_event(p_slot, event_type);
+	pciehp_queue_interrupt_event(p_slot, event_type);
 
 	return 1;
 }
@@ -153,7 +153,7 @@  void pciehp_handle_linkstate_change(struct slot *p_slot)
 		event_type = INT_LINK_DOWN;
 	}
 
-	queue_interrupt_event(p_slot, event_type);
+	pciehp_queue_interrupt_event(p_slot, event_type);
 }
 
 /* The following routines constitute the bulk of the