diff options
author | Shawn Guo <shawn.guo@linaro.org> | 2013-03-13 10:03:12 +0400 |
---|---|---|
committer | Shawn Guo <shawn.guo@linaro.org> | 2013-04-04 17:22:41 +0400 |
commit | 4aa02c7cbb6816913554dc18ff750a70a4ace796 (patch) | |
tree | eb27f8b4e307ac1d4f185b2797f9ec5f0382e520 /include/linux/mxsfb.h | |
parent | 9e5485791b805e3235ba5fb53d140881dbbe79be (diff) | |
download | linux-4aa02c7cbb6816913554dc18ff750a70a4ace796.tar.xz |
video: mxsfb: remove fb_phys/fb_size from platform_data
There is no in-tree users of mxsfb_platform_data fb_phys/fb_size.
With CMA support in the kernel, there is no real need for platform to
reserve memory and pass address and size into driver via platform_data.
So let's remove fb_phys/fb_size from mxsfb_platform_data to ease full
device tree adoption.
Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
Diffstat (limited to 'include/linux/mxsfb.h')
-rw-r--r-- | include/linux/mxsfb.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/include/linux/mxsfb.h b/include/linux/mxsfb.h index f80af8674342..93696404ee55 100644 --- a/include/linux/mxsfb.h +++ b/include/linux/mxsfb.h @@ -35,15 +35,6 @@ struct mxsfb_platform_data { unsigned dotclk_delay; /* refer manual HW_LCDIF_VDCTRL4 register */ unsigned ld_intf_width; /* refer STMLCDIF_* macros */ - - unsigned fb_size; /* Size of the video memory. If zero a - * default will be used - */ - unsigned long fb_phys; /* physical address for the video memory. If - * zero the framebuffer memory will be dynamically - * allocated. If specified,fb_size must also be specified. - * fb_phys must be unused by Linux. - */ u32 sync; /* sync mask, contains MXSFB specifics not * carried in fb_info->var.sync */ |