X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=include%2Fdevices.h;h=2d9e282e38f16248bc8d3e465e0b3e651eece30d;hb=cfa4c9d8996d5949f615553c220a06c9fe6395cc;hp=a27c4e83f1e9bd8ba2ca1d1cd16a91593cca167a;hpb=682011ff6968198da14b89e40d9f55b00f6d91f7;p=oweals%2Fu-boot.git diff --git a/include/devices.h b/include/devices.h index a27c4e83f1..2d9e282e38 100644 --- a/include/devices.h +++ b/include/devices.h @@ -39,7 +39,7 @@ typedef struct { int flags; /* Device flags: input/output/system */ int ext; /* Supported extensions */ - char name[8]; /* Device name */ + char name[16]; /* Device name */ /* GENERAL functions */ @@ -105,5 +105,11 @@ int drv_video_init (void); #ifdef CONFIG_KEYBOARD int drv_keyboard_init (void); #endif +#ifdef CONFIG_USB_TTY +int drv_usbtty_init (void); +#endif +#ifdef CONFIG_NETCONSOLE +int drv_nc_init (void); +#endif #endif /* _DEVICES_H_ */