diff options
author | Kenji Kaneshige <kaneshige.kenji@jp.fujitsu.com> | 2006-12-21 20:01:04 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2007-02-07 18:50:04 -0500 |
commit | 48fe39151727db350347e1dba09d71c8ca24207a (patch) | |
tree | 6b540050279409b0045b4fb66938ee0c18b5fecd /drivers/pci/hotplug/pciehp_ctrl.c | |
parent | 2410fa4eaec4133f9fa8968f277ddb28b89b92b3 (diff) |
pciehp: remove unnecessary php_ctlr
The struct php_ctlr seems to be only for complicating codes. This
patch removes struct php_ctlr and related codes.
Signed-off-by: Kenji Kaneshige <kaneshige.kenji@jp.fujitsu.com>
Signed-off-by: Kristen Carlson Accardi <kristen.c.accardi@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/pci/hotplug/pciehp_ctrl.c')
-rw-r--r-- | drivers/pci/hotplug/pciehp_ctrl.c | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/drivers/pci/hotplug/pciehp_ctrl.c b/drivers/pci/hotplug/pciehp_ctrl.c index 372c63e35aa9..5bca9212f5e1 100644 --- a/drivers/pci/hotplug/pciehp_ctrl.c +++ b/drivers/pci/hotplug/pciehp_ctrl.c | |||
@@ -48,9 +48,8 @@ static inline char *slot_name(struct slot *p_slot) | |||
48 | return p_slot->hotplug_slot->name; | 48 | return p_slot->hotplug_slot->name; |
49 | } | 49 | } |
50 | 50 | ||
51 | u8 pciehp_handle_attention_button(u8 hp_slot, void *inst_id) | 51 | u8 pciehp_handle_attention_button(u8 hp_slot, struct controller *ctrl) |
52 | { | 52 | { |
53 | struct controller *ctrl = (struct controller *) inst_id; | ||
54 | struct slot *p_slot; | 53 | struct slot *p_slot; |
55 | u8 rc = 0; | 54 | u8 rc = 0; |
56 | u8 getstatus; | 55 | u8 getstatus; |
@@ -101,9 +100,8 @@ u8 pciehp_handle_attention_button(u8 hp_slot, void *inst_id) | |||
101 | 100 | ||
102 | } | 101 | } |
103 | 102 | ||
104 | u8 pciehp_handle_switch_change(u8 hp_slot, void *inst_id) | 103 | u8 pciehp_handle_switch_change(u8 hp_slot, struct controller *ctrl) |
105 | { | 104 | { |
106 | struct controller *ctrl = (struct controller *) inst_id; | ||
107 | struct slot *p_slot; | 105 | struct slot *p_slot; |
108 | u8 rc = 0; | 106 | u8 rc = 0; |
109 | u8 getstatus; | 107 | u8 getstatus; |
@@ -143,9 +141,8 @@ u8 pciehp_handle_switch_change(u8 hp_slot, void *inst_id) | |||
143 | return rc; | 141 | return rc; |
144 | } | 142 | } |
145 | 143 | ||
146 | u8 pciehp_handle_presence_change(u8 hp_slot, void *inst_id) | 144 | u8 pciehp_handle_presence_change(u8 hp_slot, struct controller *ctrl) |
147 | { | 145 | { |
148 | struct controller *ctrl = (struct controller *) inst_id; | ||
149 | struct slot *p_slot; | 146 | struct slot *p_slot; |
150 | u8 presence_save, rc = 0; | 147 | u8 presence_save, rc = 0; |
151 | struct event_info *taskInfo; | 148 | struct event_info *taskInfo; |
@@ -187,9 +184,8 @@ u8 pciehp_handle_presence_change(u8 hp_slot, void *inst_id) | |||
187 | return rc; | 184 | return rc; |
188 | } | 185 | } |
189 | 186 | ||
190 | u8 pciehp_handle_power_fault(u8 hp_slot, void *inst_id) | 187 | u8 pciehp_handle_power_fault(u8 hp_slot, struct controller *ctrl) |
191 | { | 188 | { |
192 | struct controller *ctrl = (struct controller *) inst_id; | ||
193 | struct slot *p_slot; | 189 | struct slot *p_slot; |
194 | u8 rc = 0; | 190 | u8 rc = 0; |
195 | struct event_info *taskInfo; | 191 | struct event_info *taskInfo; |