]> git.sur5r.net Git - u-boot/blobdiff - include/serial.h
ppc/85xx: Remove CONFIG_SYS_DDR_TLB_START
[u-boot] / include / serial.h
index 43451a30195753231649214018ddb46288890941..f2638ec5667df90efd08f4610e5d2efd0ba50c8d 100644 (file)
@@ -67,9 +67,21 @@ extern int serial_assign(char * name);
 extern void serial_reinit_all(void);
 
 /* For usbtty */
+#ifdef CONFIG_USB_TTY
+
 extern int usbtty_getc(void);
 extern void usbtty_putc(const char c);
 extern void usbtty_puts(const char *str);
 extern int usbtty_tstc(void);
 
+#else
+
+/* stubs */
+#define usbtty_getc() 0
+#define usbtty_putc(a)
+#define usbtty_puts(a)
+#define usbtty_tstc() 0
+
+#endif /* CONFIG_USB_TTY */
+
 #endif