From mboxrd@z Thu Jan 1 00:00:00 1970 From: Minkyu Kang Date: Mon, 14 Jan 2013 19:22:24 +0900 Subject: [U-Boot] [PATCH 0/2] video: Fix compilation warnings for exynos video In-Reply-To: <1358155936-834-1-git-send-email-ajaykumar.rs@samsung.com> References: <1358155936-834-1-git-send-email-ajaykumar.rs@samsung.com> Message-ID: <50F3DC60.6060505@samsung.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 14/01/13 18:32, Ajay Kumar wrote: > This patchset fixes the following compilation warnings: > exynos_dp.c: In function 'exynos_init_dp': > exynos_dp.c:860:23: warning: variable 'disp_info' set but not used > [-Wunused-but-set-variable] > exynos_fb.c: In function 'draw_logo': > exynos_fb.c:74:8: warning: variable 'addr' set but not used > [-Wunused-but-set-variable] > exynos_fb.c:73:9: warning: variable 'y' set but not used > [-Wunused-but-set-variable] > exynos_fb.c:73:6: warning: variable 'x' set but not used > [-Wunused-but-set-variable] > > > [PATCH 1/2] video: exynos_dp: Remove unused variable disp_info > [PATCH 2/2] video: exynos_fb: Make a call to draw_logo only when CONFIG_CMD_BMP > is selected > > drivers/video/exynos_dp.c | 2 -- > drivers/video/exynos_fb.c | 6 ++++-- > 2 files changed, 4 insertions(+), 4 deletions(-) > applied to u-boot-samsung. Thanks, Minkyu Kang.