Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 67420
b: refs/heads/master
c: 7472fd3
h: refs/heads/master
v: v3
  • Loading branch information
Cyrill Gorcunov authored and Paul Mackerras committed Oct 3, 2007
1 parent 14334c1 commit c24cb90
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 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: d2ceb47a7cbcc50b45832c6b24c47515838d169a
refs/heads/master: 7472fd36a87e84c2819066543224285a6ab79ffc
5 changes: 5 additions & 0 deletions trunk/drivers/misc/hdpuftrs/hdpu_cpustate.c
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,11 @@ static int hdpu_cpustate_probe(struct platform_device *pdev)
int ret;

res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
if (!res) {
printk(KERN_ERR "sky_cpustate: "
"Invalid memory resource.\n");
return -EINVAL;
}
cpustate.set_addr = (unsigned long *)res->start;
cpustate.clr_addr = (unsigned long *)res->end - 1;

Expand Down
7 changes: 6 additions & 1 deletion trunk/drivers/misc/hdpuftrs/hdpu_nexus.c
Original file line number Diff line number Diff line change
Expand Up @@ -62,14 +62,19 @@ static int hdpu_nexus_probe(struct platform_device *pdev)
int *nexus_id_addr;

res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
if (!res) {
printk(KERN_ERR "sky_nexus: "
"Invalid memory resource.\n");
return -EINVAL;
}
nexus_id_addr = ioremap(res->start,
(unsigned long)(res->end - res->start));
if (nexus_id_addr) {
slot_id = (*nexus_id_addr >> 8) & 0x1f;
chassis_id = *nexus_id_addr & 0xff;
iounmap(nexus_id_addr);
} else {
printk(KERN_ERR "Could not map slot id\n");
printk(KERN_ERR "sky_nexus: Could not map slot id\n");
}

hdpu_slot_id = create_proc_entry("sky_slot_id", 0666, &proc_root);
Expand Down

0 comments on commit c24cb90

Please sign in to comment.