[PATCH 3/4] drm/omap: Make fixed resolution panels work

2013-03-07 Thread Archit Taneja
On Wednesday 06 March 2013 06:15 AM, Rob Clark wrote: > On Tue, Mar 5, 2013 at 9:17 AM, Archit Taneja wrote: >> The omapdrm driver requires omapdss panel drivers to expose ops like detect, >> set_timings and check_timings. These can be NULL for fixed panel DPI, DBI, >> DSI >> and SDI drivers. At

Re: [PATCH 3/4] drm/omap: Make fixed resolution panels work

2013-03-06 Thread Archit Taneja
On Wednesday 06 March 2013 06:15 AM, Rob Clark wrote: On Tue, Mar 5, 2013 at 9:17 AM, Archit Taneja wrote: The omapdrm driver requires omapdss panel drivers to expose ops like detect, set_timings and check_timings. These can be NULL for fixed panel DPI, DBI, DSI and SDI drivers. At some places,

[PATCH 3/4] drm/omap: Make fixed resolution panels work

2013-03-05 Thread Archit Taneja
The omapdrm driver requires omapdss panel drivers to expose ops like detect, set_timings and check_timings. These can be NULL for fixed panel DPI, DBI, DSI and SDI drivers. At some places, there are no checks to see if the panel driver has these ops or not, and that leads to a crash. The following

[PATCH 3/4] drm/omap: Make fixed resolution panels work

2013-03-05 Thread Rob Clark
On Tue, Mar 5, 2013 at 9:17 AM, Archit Taneja wrote: > The omapdrm driver requires omapdss panel drivers to expose ops like detect, > set_timings and check_timings. These can be NULL for fixed panel DPI, DBI, DSI > and SDI drivers. At some places, there are no checks to see if the panel > driver

Re: [PATCH 3/4] drm/omap: Make fixed resolution panels work

2013-03-05 Thread Rob Clark
On Tue, Mar 5, 2013 at 9:17 AM, Archit Taneja wrote: > The omapdrm driver requires omapdss panel drivers to expose ops like detect, > set_timings and check_timings. These can be NULL for fixed panel DPI, DBI, DSI > and SDI drivers. At some places, there are no checks to see if the panel > driver

[PATCH 3/4] drm/omap: Make fixed resolution panels work

2013-03-05 Thread Archit Taneja
The omapdrm driver requires omapdss panel drivers to expose ops like detect, set_timings and check_timings. These can be NULL for fixed panel DPI, DBI, DSI and SDI drivers. At some places, there are no checks to see if the panel driver has these ops or not, and that leads to a crash. The following