diff options
author | Fabio Estevam <fabio.estevam@freescale.com> | 2012-10-09 23:07:38 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2012-10-27 06:32:39 -0400 |
commit | 4e44cd08d9581423f10df7887ffeff685571122a (patch) | |
tree | a32998f05574a1750432a994bce4cd8239f00c5c | |
parent | 2249b45701f9817f91d9a334fa30147e133badc4 (diff) |
[media] coda: Fix 'driver_data' for mx53
CODA_7541 is the coda_product type for mx53.
The 'driver_data' for mx53 is CODA_IMX53 instead.
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
-rw-r--r-- | drivers/media/platform/coda.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/platform/coda.c b/drivers/media/platform/coda.c index 764050556b6d..7b8b547f2d51 100644 --- a/drivers/media/platform/coda.c +++ b/drivers/media/platform/coda.c | |||
@@ -1877,7 +1877,7 @@ static const struct coda_devtype coda_devdata[] = { | |||
1877 | 1877 | ||
1878 | static struct platform_device_id coda_platform_ids[] = { | 1878 | static struct platform_device_id coda_platform_ids[] = { |
1879 | { .name = "coda-imx27", .driver_data = CODA_IMX27 }, | 1879 | { .name = "coda-imx27", .driver_data = CODA_IMX27 }, |
1880 | { .name = "coda-imx53", .driver_data = CODA_7541 }, | 1880 | { .name = "coda-imx53", .driver_data = CODA_IMX53 }, |
1881 | { /* sentinel */ } | 1881 | { /* sentinel */ } |
1882 | }; | 1882 | }; |
1883 | MODULE_DEVICE_TABLE(platform, coda_platform_ids); | 1883 | MODULE_DEVICE_TABLE(platform, coda_platform_ids); |