diff options
author | Linas Vepstas <linas@austin.ibm.com> | 2007-04-13 18:34:18 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2007-05-02 22:02:39 -0400 |
commit | c02929c278f2bca68635e4c2daa00b7825d71061 (patch) | |
tree | 40dd251da30e8c3f18c6e0724a7c601ce562682e /drivers/pci/hotplug/rpaphp_slot.c | |
parent | 307ff12e35526cfab9f09cafcb17239286e6eb85 (diff) |
PCI: rpaphp: remove rpaphp_set_attention_status()
The rpaphp_set_attention_status() routine seems to be a wrapper
around a single rtas call. Abolish it.
Signed-off-by: Linas Vepstas <linas@austin.ibm.com>
Cc: John Rose <johnrose@austin.ibm.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/rpaphp_slot.c')
-rw-r--r-- | drivers/pci/hotplug/rpaphp_slot.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/drivers/pci/hotplug/rpaphp_slot.c b/drivers/pci/hotplug/rpaphp_slot.c index 30c9dc98e4ec..d4ee8723fcb3 100644 --- a/drivers/pci/hotplug/rpaphp_slot.c +++ b/drivers/pci/hotplug/rpaphp_slot.c | |||
@@ -184,15 +184,3 @@ sysfs_fail: | |||
184 | return retval; | 184 | return retval; |
185 | } | 185 | } |
186 | 186 | ||
187 | int rpaphp_set_attention_status(struct slot *slot, u8 status) | ||
188 | { | ||
189 | int rc; | ||
190 | |||
191 | /* status: LED_OFF or LED_ON */ | ||
192 | rc = rtas_set_indicator(DR_INDICATOR, slot->index, status); | ||
193 | if (rc < 0) | ||
194 | err("slot(name=%s location=%s index=0x%x) set attention-status(%d) failed! rc=0x%x\n", | ||
195 | slot->name, slot->location, slot->index, status, rc); | ||
196 | |||
197 | return rc; | ||
198 | } | ||