diff options
Diffstat (limited to 'drivers/misc/hdpuftrs/hdpu_cpustate.c')
-rw-r--r-- | drivers/misc/hdpuftrs/hdpu_cpustate.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/misc/hdpuftrs/hdpu_cpustate.c b/drivers/misc/hdpuftrs/hdpu_cpustate.c index b5c6f21dcb69..b16742c7c69d 100644 --- a/drivers/misc/hdpuftrs/hdpu_cpustate.c +++ b/drivers/misc/hdpuftrs/hdpu_cpustate.c | |||
@@ -194,6 +194,11 @@ static int hdpu_cpustate_probe(struct platform_device *pdev) | |||
194 | int ret; | 194 | int ret; |
195 | 195 | ||
196 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); | 196 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
197 | if (!res) { | ||
198 | printk(KERN_ERR "sky_cpustate: " | ||
199 | "Invalid memory resource.\n"); | ||
200 | return -EINVAL; | ||
201 | } | ||
197 | cpustate.set_addr = (unsigned long *)res->start; | 202 | cpustate.set_addr = (unsigned long *)res->start; |
198 | cpustate.clr_addr = (unsigned long *)res->end - 1; | 203 | cpustate.clr_addr = (unsigned long *)res->end - 1; |
199 | 204 | ||