]> git.ipfire.org Git - people/ms/u-boot.git/commit
Fix unused function in cmd_bdinfo.c
authorSimon Glass <sjg@chromium.org>
Tue, 6 Dec 2011 13:37:17 +0000 (13:37 +0000)
committerWolfgang Denk <wd@denx.de>
Wed, 7 Dec 2011 07:42:28 +0000 (08:42 +0100)
commit5f3dfadc26c3d7c02e5fe16a743475328a85e891
tree2e01c7c20f66d262574e2a8680bb473195ac6d8b
parent80729a5493874e696bc6f69a6fc8b54c3c0c5042
Fix unused function in cmd_bdinfo.c

It is fine to use __maybe_unused instead of #ifdef, but we also need one
for print_eth() since not all boards have Ethernet. This fixes this
warning:

cmd_bdinfo.c:39:13: warning: 'print_eth' defined but not used [-Wunused-function]

Signed-off-by: Simon Glass <sjg@chromium.org>
common/cmd_bdinfo.c