diff options
author | Brian Niebuhr <bniebuhr@efjohnson.com> | 2010-10-06 09:17:16 -0400 |
---|---|---|
committer | Sekhar Nori <nsekhar@ti.com> | 2010-11-18 08:08:37 -0500 |
commit | d8c174cdeb6511aa307e6058468b68a9cc3990e4 (patch) | |
tree | 217b7b51b5da86a2dbe29eea88f3d6748034974f /drivers/spi/davinci_spi.c | |
parent | 3f27b57c1684efbe11fcc9449df898b1d0feb753 (diff) |
spi: davinci: setup the driver owner
Setup the owner member of the platform driver to THIS_MODULE
instead of leaving it NULL.
Signed-off-by: Brian Niebuhr <bniebuhr@efjohnson.com>
Tested-By: Michael Williamson <michael.williamson@criticallink.com>
Signed-off-by: Sekhar Nori <nsekhar@ti.com>
Diffstat (limited to 'drivers/spi/davinci_spi.c')
-rw-r--r-- | drivers/spi/davinci_spi.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/spi/davinci_spi.c b/drivers/spi/davinci_spi.c index 1652bba955e2..2ec5fd2f2e7b 100644 --- a/drivers/spi/davinci_spi.c +++ b/drivers/spi/davinci_spi.c | |||
@@ -1001,7 +1001,10 @@ static int __exit davinci_spi_remove(struct platform_device *pdev) | |||
1001 | } | 1001 | } |
1002 | 1002 | ||
1003 | static struct platform_driver davinci_spi_driver = { | 1003 | static struct platform_driver davinci_spi_driver = { |
1004 | .driver.name = "spi_davinci", | 1004 | .driver = { |
1005 | .name = "spi_davinci", | ||
1006 | .owner = THIS_MODULE, | ||
1007 | }, | ||
1005 | .remove = __exit_p(davinci_spi_remove), | 1008 | .remove = __exit_p(davinci_spi_remove), |
1006 | }; | 1009 | }; |
1007 | 1010 | ||