diff options
Diffstat (limited to 'drivers/misc/hdpuftrs/hdpu_nexus.c')
-rw-r--r-- | drivers/misc/hdpuftrs/hdpu_nexus.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/drivers/misc/hdpuftrs/hdpu_nexus.c b/drivers/misc/hdpuftrs/hdpu_nexus.c index fda9998f45ca..01bc9179603b 100644 --- a/drivers/misc/hdpuftrs/hdpu_nexus.c +++ b/drivers/misc/hdpuftrs/hdpu_nexus.c | |||
@@ -62,6 +62,11 @@ static int hdpu_nexus_probe(struct platform_device *pdev) | |||
62 | int *nexus_id_addr; | 62 | int *nexus_id_addr; |
63 | 63 | ||
64 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); | 64 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
65 | if (!res) { | ||
66 | printk(KERN_ERR "sky_nexus: " | ||
67 | "Invalid memory resource.\n"); | ||
68 | return -EINVAL; | ||
69 | } | ||
65 | nexus_id_addr = ioremap(res->start, | 70 | nexus_id_addr = ioremap(res->start, |
66 | (unsigned long)(res->end - res->start)); | 71 | (unsigned long)(res->end - res->start)); |
67 | if (nexus_id_addr) { | 72 | if (nexus_id_addr) { |
@@ -69,7 +74,7 @@ static int hdpu_nexus_probe(struct platform_device *pdev) | |||
69 | chassis_id = *nexus_id_addr & 0xff; | 74 | chassis_id = *nexus_id_addr & 0xff; |
70 | iounmap(nexus_id_addr); | 75 | iounmap(nexus_id_addr); |
71 | } else { | 76 | } else { |
72 | printk(KERN_ERR "Could not map slot id\n"); | 77 | printk(KERN_ERR "sky_nexus: Could not map slot id\n"); |
73 | } | 78 | } |
74 | 79 | ||
75 | hdpu_slot_id = create_proc_entry("sky_slot_id", 0666, &proc_root); | 80 | hdpu_slot_id = create_proc_entry("sky_slot_id", 0666, &proc_root); |