2013-05-21 02:42:57

by Libo Chen

[permalink] [raw]
Subject: [PATCH 06/19] drivers/usb/phy: add missing platform_driver owner

set the owner of platform_driver, to ensure that the
caller of driver holds a module refernece

Signed-off-by: Libo Chen <[email protected]>
---
drivers/usb/phy/phy-rcar-usb.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/drivers/usb/phy/phy-rcar-usb.c b/drivers/usb/phy/phy-rcar-usb.c
index a35681b..a3422a5 100644
--- a/drivers/usb/phy/phy-rcar-usb.c
+++ b/drivers/usb/phy/phy-rcar-usb.c
@@ -208,6 +208,7 @@ static int rcar_usb_phy_remove(struct platform_device *pdev)
static struct platform_driver rcar_usb_phy_driver = {
.driver = {
.name = "rcar_usb_phy",
+ .owner = THIS_MODULE,
},
.probe = rcar_usb_phy_probe,
.remove = rcar_usb_phy_remove,
--
1.7.1