Skip to content

Commit

Permalink
[PATCH] fix platform_device_put/del mishaps
Browse files Browse the repository at this point in the history
This fixes drivers/char/pc8736x_gpio.c and drivers/char/scx200_gpio.c to
use the platform_device_del/put ops correctly.

Signed-off-by: Ingo Molnar <[email protected]>
Cc: Jim Cromie <[email protected]>
Cc: Greg KH <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
Ingo Molnar authored and Linus Torvalds committed Jun 30, 2006
1 parent 491d525 commit 1017f6a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
5 changes: 3 additions & 2 deletions drivers/char/pc8736x_gpio.c
Original file line number Diff line number Diff line change
Expand Up @@ -319,9 +319,10 @@ static int __init pc8736x_gpio_init(void)
return 0;

undo_platform_dev_add:
platform_device_put(pdev);
platform_device_del(pdev);
undo_platform_dev_alloc:
kfree(pdev);
platform_device_put(pdev);

return rc;
}

Expand Down
6 changes: 3 additions & 3 deletions drivers/char/scx200_gpio.c
Original file line number Diff line number Diff line change
Expand Up @@ -126,17 +126,17 @@ static int __init scx200_gpio_init(void)
undo_chrdev_region:
unregister_chrdev_region(dev, num_pins);
undo_platform_device_add:
platform_device_put(pdev);
platform_device_del(pdev);
undo_malloc:
kfree(pdev);
platform_device_put(pdev);

return rc;
}

static void __exit scx200_gpio_cleanup(void)
{
kfree(scx200_devices);
unregister_chrdev_region(MKDEV(major, 0), num_pins);
platform_device_put(pdev);
platform_device_unregister(pdev);
/* kfree(pdev); */
}
Expand Down

0 comments on commit 1017f6a

Please sign in to comment.