diff options
| author | 2016-01-12 11:01:12 +0100 | |
|---|---|---|
| committer | 2016-01-12 11:01:12 +0100 | |
| commit | 1f16f116b01c110db20ab808562c8b8bc3ee3d6e (patch) | |
| tree | 44db563f64cf5f8d62af8f99a61e2b248c44ea3a /drivers/gpu/drm/omapdrm/omap_fbdev.c | |
| parent | clocksource/drivers/fsl_ftm_timer: Fix CLKSRC_MMIO dependency (diff) | |
| parent | clocksource/drivers/vt8500: Increase the minimum delta (diff) | |
| download | wireguard-linux-1f16f116b01c110db20ab808562c8b8bc3ee3d6e.tar.xz wireguard-linux-1f16f116b01c110db20ab808562c8b8bc3ee3d6e.zip | |
Merge branches 'clockevents/4.4-fixes' and 'clockevents/4.5-fixes' of http://git.linaro.org/people/daniel.lezcano/linux into timers/urgent
Pull in fixes from Daniel Lezcano:
 - Fix the vt8500 timer leading to a system lock up when dealing with too
   small delta (Roman Volkov)
 - Select the CLKSRC_MMIO when the fsl_ftm_timer is enabled with COMPILE_TEST
   (Daniel Lezcano)
 - Prevent to compile timers using the 'iomem' API when the architecture has
   not HAS_IOMEM set (Richard Weinberger)
Diffstat (limited to '')
| -rw-r--r-- | drivers/gpu/drm/omapdrm/omap_fbdev.c | 5 | 
1 files changed, 1 insertions, 4 deletions
| diff --git a/drivers/gpu/drm/omapdrm/omap_fbdev.c b/drivers/gpu/drm/omapdrm/omap_fbdev.c index b8e4cdec28c3..24f92bea39c7 100644 --- a/drivers/gpu/drm/omapdrm/omap_fbdev.c +++ b/drivers/gpu/drm/omapdrm/omap_fbdev.c @@ -112,11 +112,8 @@ static int omap_fbdev_create(struct drm_fb_helper *helper,  	dma_addr_t paddr;  	int ret; -	/* only doing ARGB32 since this is what is needed to alpha-blend -	 * with video overlays: -	 */  	sizes->surface_bpp = 32; -	sizes->surface_depth = 32; +	sizes->surface_depth = 24;  	DBG("create fbdev: %dx%d@%d (%dx%d)", sizes->surface_width,  			sizes->surface_height, sizes->surface_bpp, | 
