diff options
author | Brian Niebuhr <bniebuhr@efjohnson.com> | 2010-10-06 18:47:16 +0530 |
---|---|---|
committer | Sekhar Nori <nsekhar@ti.com> | 2010-11-18 18:38:37 +0530 |
commit | d8c174cdeb6511aa307e6058468b68a9cc3990e4 (patch) | |
tree | 217b7b51b5da86a2dbe29eea88f3d6748034974f /drivers/spi | |
parent | 3f27b57c1684efbe11fcc9449df898b1d0feb753 (diff) | |
download | blackbird-obmc-linux-d8c174cdeb6511aa307e6058468b68a9cc3990e4.tar.gz blackbird-obmc-linux-d8c174cdeb6511aa307e6058468b68a9cc3990e4.zip |
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')
-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) } static struct platform_driver davinci_spi_driver = { - .driver.name = "spi_davinci", + .driver = { + .name = "spi_davinci", + .owner = THIS_MODULE, + }, .remove = __exit_p(davinci_spi_remove), }; |