diff options
author | Aaro Koskinen <aaro.koskinen@nokia.com> | 2015-06-08 11:32:43 +0300 |
---|---|---|
committer | Tejun Heo <tj@kernel.org> | 2015-06-08 18:03:04 +0900 |
commit | 4710f2facb5c68d629015747bd09b37203e0d137 (patch) | |
tree | 54eb52f9d46a8576135c78726c82782860df0feb /drivers/ata | |
parent | e96998fc200867f005dd14c7d1dd35e1107d4914 (diff) | |
download | talos-obmc-linux-4710f2facb5c68d629015747bd09b37203e0d137.tar.gz talos-obmc-linux-4710f2facb5c68d629015747bd09b37203e0d137.zip |
pata_octeon_cf: fix broken build
MODULE_DEVICE_TABLE is referring to wrong driver's table and breaks the
build. Fix that.
Cc: stable@vger.kernel.org
Signed-off-by: Aaro Koskinen <aaro.koskinen@nokia.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
Diffstat (limited to 'drivers/ata')
-rw-r--r-- | drivers/ata/pata_octeon_cf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ata/pata_octeon_cf.c b/drivers/ata/pata_octeon_cf.c index 80a80548ad0a..27245957eee3 100644 --- a/drivers/ata/pata_octeon_cf.c +++ b/drivers/ata/pata_octeon_cf.c @@ -1053,7 +1053,7 @@ static struct of_device_id octeon_cf_match[] = { }, {}, }; -MODULE_DEVICE_TABLE(of, octeon_i2c_match); +MODULE_DEVICE_TABLE(of, octeon_cf_match); static struct platform_driver octeon_cf_driver = { .probe = octeon_cf_probe, |