Commit e1a75a1a authored by Nicolas Kaiser's avatar Nicolas Kaiser Committed by Tomi Valkeinen

arm/omap: simplify conditional

Simplify conditional: (a || (!a && !b)) => (a || !b)
Signed-off-by: default avatarNicolas Kaiser <nikai@nikai.net>
Signed-off-by: default avatarTomi Valkeinen <tomi.valkeinen@nokia.com>
parent e6634529
......@@ -126,7 +126,7 @@ static int set_fbmem_region_type(struct omapfb_mem_region *rg, int mem_type,
* type = 0 && paddr = 0, a default don't care case maps to
* the SDRAM type.
*/
if (rg->type || (!rg->type && !rg->paddr))
if (rg->type || !rg->paddr)
return 0;
if (ranges_overlap(rg->paddr, rg->size, mem_start, mem_size)) {
rg->type = mem_type;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment