common: Move serial_printf() to the serial header
authorSimon Glass <sjg@chromium.org>
Thu, 14 Nov 2019 19:57:23 +0000 (12:57 -0700)
committerTom Rini <trini@konsulko.com>
Mon, 2 Dec 2019 23:23:10 +0000 (18:23 -0500)
Move this function header to serial.h since this function is clearly
related to serial. The function itself stays in console.c since we don't
have a single serial file. DM and non-DM each has a separate file so we
would have to either create a new common serial file, or repeat the
function in both serial.c and serial-uclass.c, neither of which seem
worthwhile.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Tom Rini <trini@konsulko.com>
drivers/usb/gadget/core.c
drivers/usb/gadget/designware_udc.c
drivers/usb/gadget/ep0.c
drivers/usb/musb-new/omap2430.c
drivers/usb/musb/musb_udc.c
drivers/usb/musb/omap3.c
include/common.h
include/serial.h

index ffaf161fb7ecf48a5637a90a97e8c970da283dff..7e1e51db967ca0635cfccd27d52b131933e14d1c 100644 (file)
@@ -16,6 +16,7 @@
  */
 
 #include <malloc.h>
+#include <serial.h>
 #include <usbdevice.h>
 
 #define MAX_INTERFACES 2
index 432f312cee4c3cca6200c2039688364d61373c5d..70c5c678c3bea9644b1de783a8a5aea2dfe7b597 100644 (file)
@@ -8,6 +8,7 @@
  */
 
 #include <common.h>
+#include <serial.h>
 #include <asm/io.h>
 
 #include <env.h>
index a36d9ec03d89b9dcb743a2d8bceb1b5475487cfd..6fabee24ce98c1f7f12ab2f7efc36746383a6fb6 100644 (file)
@@ -37,6 +37,7 @@
  */
 
 #include <common.h>
+#include <serial.h>
 #include <usbdevice.h>
 
 #if 0
@@ -581,7 +582,7 @@ int ep0_recv_setup (struct urb *urb)
                        device->interface = le16_to_cpu (request->wIndex);
                        device->alternate = le16_to_cpu (request->wValue);
                        /*dbg_ep0(2, "set interface: %d alternate: %d", device->interface, device->alternate); */
-                       serial_printf ("DEVICE_SET_INTERFACE.. event?\n");
+                       serial_printf("DEVICE_SET_INTERFACE.. event?\n");
                        return 0;
 
                case USB_REQ_GET_STATUS:
index cca1653f1e274ad7730fd9e19f7efc61f8323e89..05059ce3cbdef1cd03a4795ba0e4070facce0941 100644 (file)
@@ -10,6 +10,7 @@
  */
 #include <common.h>
 #include <dm.h>
+#include <serial.h>
 #include <dm/device-internal.h>
 #include <dm/lists.h>
 #include <linux/usb/otg.h>
index 7620114bec437810adf47936344ce227e8572d53..584564bac2b04e69c8ee8a61392d73be4fce423d 100644 (file)
@@ -38,6 +38,7 @@
  */
 
 #include <common.h>
+#include <serial.h>
 #include <usbdevice.h>
 #include <usb/udc.h>
 #include "../gadget/ep0.h"
index b2e4c32baff415ade0644ecfb400f2b0cb9754de..080bd78523c92c59351cd0ee32151f7849d1ee5d 100644 (file)
@@ -16,6 +16,7 @@
  * ------------------------------------------------------------------------
  */
 
+#include <serial.h>
 #include <asm/omap_common.h>
 #include <twl4030.h>
 #include <twl6030.h>
index 4fda40cc1d6b2413fd95c8f7fcfe84973c30fd8a..f97a7b6e14d6ab16d9d54dce8190f1eecaa69950 100644 (file)
@@ -310,13 +310,6 @@ int ulz4fn(const void *src, size_t srcn, void *dst, size_t *dstn);
 /* lib/vsprintf.c */
 #include <vsprintf.h>
 
-/*
- * STDIO based functions (can always be used)
- */
-/* serial stuff */
-int    serial_printf (const char *fmt, ...)
-               __attribute__ ((format (__printf__, 1, 2)));
-
 /* lib/net_utils.c */
 #include <net.h>
 
index 38a1cc99ae2e2f24a86a63f605a91ecffbafde70..8d1803c8003269a6fc7f2affef09f9814e0e3a9b 100644 (file)
@@ -324,4 +324,15 @@ void pl01x_serial_initialize(void);
 void pxa_serial_initialize(void);
 void sh_serial_initialize(void);
 
+/**
+ * serial_printf() - Write a formatted string to the serial console
+ *
+ * The total size of the output must be less than CONFIG_SYS_PBSIZE.
+ *
+ * @fmt: Printf format string, followed by format arguments
+ * @return number of characters written
+ */
+int serial_printf(const char *fmt, ...)
+               __attribute__ ((format (__printf__, 1, 2)));
+
 #endif