diff options
author | David S. Miller <davem@sunset.davemloft.net> | 2006-12-29 00:01:32 -0500 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-12-31 17:06:05 -0500 |
commit | e3a411a3dfc1d633504aa63efab32b7e00318454 (patch) | |
tree | 2ba6117448edd7056c8fa48cc6a696ae73a6c21a /drivers/video/p9100.c | |
parent | 6fc5bae797a6632bbccdd49a1b6a96121368a4b9 (diff) |
[SPARC64]: Fix of_iounmap() region release.
We need to pass in the resource otherwise we cannot
release the region properly. We must know whether it is
an I/O or MEM resource.
Spotted by Eric Brower.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/video/p9100.c')
-rw-r--r-- | drivers/video/p9100.c | 25 |
1 files changed, 15 insertions, 10 deletions
diff --git a/drivers/video/p9100.c b/drivers/video/p9100.c index 56ac51d6a7f3..637b78bb4bf7 100644 --- a/drivers/video/p9100.c +++ b/drivers/video/p9100.c | |||
@@ -297,7 +297,8 @@ static int __devinit p9100_init_one(struct of_device *op) | |||
297 | all->info.screen_base = of_ioremap(&op->resource[2], 0, | 297 | all->info.screen_base = of_ioremap(&op->resource[2], 0, |
298 | all->par.fbsize, "p9100 ram"); | 298 | all->par.fbsize, "p9100 ram"); |
299 | if (!all->info.screen_base) { | 299 | if (!all->info.screen_base) { |
300 | of_iounmap(all->par.regs, sizeof(struct p9100_regs)); | 300 | of_iounmap(&op->resource[0], |
301 | all->par.regs, sizeof(struct p9100_regs)); | ||
301 | kfree(all); | 302 | kfree(all); |
302 | return -ENOMEM; | 303 | return -ENOMEM; |
303 | } | 304 | } |
@@ -306,8 +307,10 @@ static int __devinit p9100_init_one(struct of_device *op) | |||
306 | p9100_blank(0, &all->info); | 307 | p9100_blank(0, &all->info); |
307 | 308 | ||
308 | if (fb_alloc_cmap(&all->info.cmap, 256, 0)) { | 309 | if (fb_alloc_cmap(&all->info.cmap, 256, 0)) { |
309 | of_iounmap(all->par.regs, sizeof(struct p9100_regs)); | 310 | of_iounmap(&op->resource[0], |
310 | of_iounmap(all->info.screen_base, all->par.fbsize); | 311 | all->par.regs, sizeof(struct p9100_regs)); |
312 | of_iounmap(&op->resource[2], | ||
313 | all->info.screen_base, all->par.fbsize); | ||
311 | kfree(all); | 314 | kfree(all); |
312 | return -ENOMEM; | 315 | return -ENOMEM; |
313 | } | 316 | } |
@@ -317,8 +320,10 @@ static int __devinit p9100_init_one(struct of_device *op) | |||
317 | err = register_framebuffer(&all->info); | 320 | err = register_framebuffer(&all->info); |
318 | if (err < 0) { | 321 | if (err < 0) { |
319 | fb_dealloc_cmap(&all->info.cmap); | 322 | fb_dealloc_cmap(&all->info.cmap); |
320 | of_iounmap(all->par.regs, sizeof(struct p9100_regs)); | 323 | of_iounmap(&op->resource[0], |
321 | of_iounmap(all->info.screen_base, all->par.fbsize); | 324 | all->par.regs, sizeof(struct p9100_regs)); |
325 | of_iounmap(&op->resource[2], | ||
326 | all->info.screen_base, all->par.fbsize); | ||
322 | kfree(all); | 327 | kfree(all); |
323 | return err; | 328 | return err; |
324 | } | 329 | } |
@@ -340,19 +345,19 @@ static int __devinit p9100_probe(struct of_device *dev, const struct of_device_i | |||
340 | return p9100_init_one(op); | 345 | return p9100_init_one(op); |
341 | } | 346 | } |
342 | 347 | ||
343 | static int __devexit p9100_remove(struct of_device *dev) | 348 | static int __devexit p9100_remove(struct of_device *op) |
344 | { | 349 | { |
345 | struct all_info *all = dev_get_drvdata(&dev->dev); | 350 | struct all_info *all = dev_get_drvdata(&op->dev); |
346 | 351 | ||
347 | unregister_framebuffer(&all->info); | 352 | unregister_framebuffer(&all->info); |
348 | fb_dealloc_cmap(&all->info.cmap); | 353 | fb_dealloc_cmap(&all->info.cmap); |
349 | 354 | ||
350 | of_iounmap(all->par.regs, sizeof(struct p9100_regs)); | 355 | of_iounmap(&op->resource[0], all->par.regs, sizeof(struct p9100_regs)); |
351 | of_iounmap(all->info.screen_base, all->par.fbsize); | 356 | of_iounmap(&op->resource[2], all->info.screen_base, all->par.fbsize); |
352 | 357 | ||
353 | kfree(all); | 358 | kfree(all); |
354 | 359 | ||
355 | dev_set_drvdata(&dev->dev, NULL); | 360 | dev_set_drvdata(&op->dev, NULL); |
356 | 361 | ||
357 | return 0; | 362 | return 0; |
358 | } | 363 | } |