diff --git a/drivers/video/anx9804.c b/drivers/video/anx9804.c old mode 100755 new mode 100644 diff --git a/drivers/video/video-uclass.c b/drivers/video/video-uclass.c index b5bb8e0efde53bb82f196f46bfd978293b7b91ee..93fdc6828b1ea34d730658653c8f6f0dee7f1846 100644 --- a/drivers/video/video-uclass.c +++ b/drivers/video/video-uclass.c @@ -272,7 +272,7 @@ static int video_post_bind(struct udevice *dev) ulong size; /* Before relocation there is nothing to do here */ - if ((!gd->flags & GD_FLG_RELOC)) + if (!(gd->flags & GD_FLG_RELOC)) return 0; size = alloc_fb(dev, &addr); if (addr < gd->video_bottom) { diff --git a/include/configs/blanche.h b/include/configs/blanche.h old mode 100755 new mode 100644