mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-21 06:31:31 +00:00
cmd_vfd: Move conditional compilation to Makefile
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
This commit is contained in:
parent
0b7c563989
commit
0d92d4a699
2 changed files with 1 additions and 3 deletions
|
@ -144,7 +144,7 @@ COBJS-$(CONFIG_USB_STORAGE) += usb_storage.o
|
|||
endif
|
||||
COBJS-$(CONFIG_CMD_XIMG) += cmd_ximg.o
|
||||
COBJS-$(CONFIG_YAFFS2) += cmd_yaffs2.o
|
||||
COBJS-y += cmd_vfd.o
|
||||
COBJS-$(CONFIG_VFD) += cmd_vfd.o
|
||||
COBJS-$(CONFIG_CMD_DOC) += docecc.o
|
||||
COBJS-y += flash.o
|
||||
COBJS-y += kgdb.o
|
||||
|
|
|
@ -75,7 +75,6 @@ U_BOOT_CMD(
|
|||
);
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_VFD
|
||||
int trab_vfd (ulong bitmap)
|
||||
{
|
||||
uchar *addr;
|
||||
|
@ -103,4 +102,3 @@ int trab_vfd (ulong bitmap)
|
|||
transfer_pic(3, addr, VFD_LOGO_HEIGHT, VFD_LOGO_WIDTH);
|
||||
return 0;
|
||||
}
|
||||
#endif /* CONFIG_VFD */
|
||||
|
|
Loading…
Add table
Reference in a new issue