Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 53366
b: refs/heads/master
c: 427310f
h: refs/heads/master
v: v3
  • Loading branch information
Linas Vepstas authored and Greg Kroah-Hartman committed May 3, 2007
1 parent fec5f22 commit 166c777
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 23 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 517d5a0417e19101eaa769039d1921d626ee546c
refs/heads/master: 427310ff02e80cc80826407c0121cec3694c9e7d
1 change: 0 additions & 1 deletion trunk/drivers/pci/hotplug/rpaphp.h
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,6 @@ extern void dealloc_slot_struct(struct slot *slot);
extern struct slot *alloc_slot_struct(struct device_node *dn, int drc_index, char *drc_name, int power_domain);
extern int rpaphp_register_slot(struct slot *slot);
extern int rpaphp_deregister_slot(struct slot *slot);
extern int rpaphp_get_power_status(struct slot *slot, u8 * value);
extern int rpaphp_set_attention_status(struct slot *slot, u8 status);

#endif /* _PPC64PHP_H */
6 changes: 4 additions & 2 deletions trunk/drivers/pci/hotplug/rpaphp_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -100,11 +100,13 @@ static int set_attention_status(struct hotplug_slot *hotplug_slot, u8 value)
*/
static int get_power_status(struct hotplug_slot *hotplug_slot, u8 * value)
{
int retval;
int retval, level;
struct slot *slot = (struct slot *)hotplug_slot->private;

down(&rpaphp_sem);
retval = rpaphp_get_power_status(slot, value);
retval = rtas_get_power_level (slot->power_domain, &level);
if (!retval)
*value = level;
up(&rpaphp_sem);
return retval;
}
Expand Down
7 changes: 6 additions & 1 deletion trunk/drivers/pci/hotplug/rpaphp_pci.c
Original file line number Diff line number Diff line change
Expand Up @@ -183,9 +183,14 @@ static int setup_pci_slot(struct slot *slot)

int rpaphp_register_pci_slot(struct slot *slot)
{
int rc, level;
struct hotplug_slot_info *info = slot->hotplug_slot->info;

rpaphp_get_power_status(slot, &info->power_status);
rc = rtas_get_power_level(slot->power_domain, &level);
if (rc)
return rc;
info->power_status = level;

rpaphp_get_pci_adapter_status(slot, 1, &info->adapter_status);

if (info->adapter_status == NOT_VALID) {
Expand Down
18 changes: 0 additions & 18 deletions trunk/drivers/pci/hotplug/rpaphp_slot.c
Original file line number Diff line number Diff line change
Expand Up @@ -184,24 +184,6 @@ int rpaphp_register_slot(struct slot *slot)
return retval;
}

int rpaphp_get_power_status(struct slot *slot, u8 * value)
{
int rc = 0, level;

rc = rtas_get_power_level(slot->power_domain, &level);
if (rc < 0) {
err("failed to get power-level for slot(%s), rc=0x%x\n",
slot->location, rc);
return rc;
}

dbg("%s the power level of slot %s(pwd-domain:0x%x) is %d\n",
__FUNCTION__, slot->name, slot->power_domain, level);
*value = level;

return rc;
}

int rpaphp_set_attention_status(struct slot *slot, u8 status)
{
int rc;
Expand Down

0 comments on commit 166c777

Please sign in to comment.