diff options
| -rw-r--r-- | drivers/video/omap/omapfb_main.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/video/omap/omapfb_main.c b/drivers/video/omap/omapfb_main.c index f74aec91aee0..2c4f470fa086 100644 --- a/drivers/video/omap/omapfb_main.c +++ b/drivers/video/omap/omapfb_main.c | |||
| @@ -83,10 +83,17 @@ static struct caps_table_struct color_caps[] = { | |||
| 83 | { 1 << OMAPFB_COLOR_YUY422, "YUY422", }, | 83 | { 1 << OMAPFB_COLOR_YUY422, "YUY422", }, |
| 84 | }; | 84 | }; |
| 85 | 85 | ||
| 86 | static void omapdss_release(struct device *dev) | ||
| 87 | { | ||
| 88 | } | ||
| 89 | |||
| 86 | /* dummy device for clocks */ | 90 | /* dummy device for clocks */ |
| 87 | static struct platform_device omapdss_device = { | 91 | static struct platform_device omapdss_device = { |
| 88 | .name = "omapdss", | 92 | .name = "omapdss", |
| 89 | .id = -1, | 93 | .id = -1, |
| 94 | .dev = { | ||
| 95 | .release = omapdss_release, | ||
| 96 | }, | ||
| 90 | }; | 97 | }; |
| 91 | 98 | ||
| 92 | /* | 99 | /* |
