diff options
author | Archit Taneja <architt@codeaurora.org> | 2016-05-05 21:26:34 +0530 |
---|---|---|
committer | Rob Clark <robdclark@gmail.com> | 2016-07-16 10:08:49 -0400 |
commit | 6a5625d82704b1777696048e837c51418cfad1d8 (patch) | |
tree | c0e681a620bc45f84c5969b66ee3b4315d524477 | |
parent | a3c463e0961c924aaeb64274906343ee2b814d99 (diff) | |
download | linux-6a5625d82704b1777696048e837c51418cfad1d8.tar.bz2 |
drm/msm: Drop the id_table in platform_driver
This isn't needed as we only support OF.
Signed-off-by: Archit Taneja <architt@codeaurora.org>
Signed-off-by: Rob Clark <robdclark@gmail.com>
-rw-r--r-- | drivers/gpu/drm/msm/msm_drv.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/drivers/gpu/drm/msm/msm_drv.c b/drivers/gpu/drm/msm/msm_drv.c index a02dc2b27739..476eafef7add 100644 --- a/drivers/gpu/drm/msm/msm_drv.c +++ b/drivers/gpu/drm/msm/msm_drv.c @@ -852,11 +852,6 @@ static int msm_pdev_remove(struct platform_device *pdev) return 0; } -static const struct platform_device_id msm_id[] = { - { "mdp", 0 }, - { } -}; - static const struct of_device_id dt_match[] = { { .compatible = "qcom,mdp4", .data = (void *) 4 }, /* mdp4 */ { .compatible = "qcom,mdp5", .data = (void *) 5 }, /* mdp5 */ @@ -874,7 +869,6 @@ static struct platform_driver msm_platform_driver = { .of_match_table = dt_match, .pm = &msm_pm_ops, }, - .id_table = msm_id, }; static int __init msm_drm_register(void) |