Skip to content

Commit 4710f2f

Browse files
aakoskinhtejun
authored andcommitted
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>
1 parent e96998f commit 4710f2f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/ata/pata_octeon_cf.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1053,7 +1053,7 @@ static struct of_device_id octeon_cf_match[] = {
10531053
},
10541054
{},
10551055
};
1056-
MODULE_DEVICE_TABLE(of, octeon_i2c_match);
1056+
MODULE_DEVICE_TABLE(of, octeon_cf_match);
10571057

10581058
static struct platform_driver octeon_cf_driver = {
10591059
.probe = octeon_cf_probe,

0 commit comments

Comments
 (0)