linux-fbdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] efifb: Fix call to wrong unregister function
@ 2011-06-12  8:45 Maarten Lankhorst
  2011-06-12 10:52 ` wanlong.gao
  0 siblings, 1 reply; 7+ messages in thread
From: Maarten Lankhorst @ 2011-06-12  8:45 UTC (permalink / raw)
  To: Peter Jones; +Cc: linux-fbdev, linux-kernel, Maarten Lankhorst

Seems like driver_unregister must be called instead of device_unregister.

Signed-off-by: Maarten Lankhorst <m.b.lankhorst@gmail.com>
---
 drivers/video/efifb.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/video/efifb.c b/drivers/video/efifb.c
index 69c49df..d8717a6 100644
--- a/drivers/video/efifb.c
+++ b/drivers/video/efifb.c
@@ -541,7 +541,7 @@ static int __init efifb_init(void)
 	 */
 	ret = platform_driver_probe(&efifb_driver, efifb_probe);
 	if (ret) {
-		platform_device_unregister(&efifb_driver);
+		platform_driver_unregister(&efifb_driver);
 		return ret;
 	}
 
-- 
1.7.4.1


^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2011-06-14  7:33 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-06-12  8:45 [PATCH] efifb: Fix call to wrong unregister function Maarten Lankhorst
2011-06-12 10:52 ` wanlong.gao
2011-06-12 17:48   ` [PATCH] " Maarten Lankhorst
2011-06-12 23:36     ` Wanlong Gao
2011-06-13  2:55   ` Andy Lutomirski
2011-06-13  7:51     ` Maarten Lankhorst
2011-06-14  7:33     ` Paul Mundt

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).