diff options
author | Amir Hammad <amir.hammad@hotmail.com> | 2016-08-23 06:41:07 +0200 |
---|---|---|
committer | Amir Hammad <amir.hammad@hotmail.com> | 2016-08-23 07:15:51 +0200 |
commit | 049b67b492782e8f7ab4ade10d181d66ccf1f391 (patch) | |
tree | 00c44b2eca8639f1cfa5e993cd87b77d9496fe2e | |
parent | 64969f19353452629631fb92d627d3d9a93e16da (diff) | |
download | secure-hid-049b67b492782e8f7ab4ade10d181d66ccf1f391.tar.gz secure-hid-049b67b492782e8f7ab4ade10d181d66ccf1f391.tar.bz2 secure-hid-049b67b492782e8f7ab4ade10d181d66ccf1f391.zip |
remove not needed carriage returns in printf
Signed-off-by: Amir Hammad <amir.hammad@hotmail.com>
-rw-r--r-- | src/usbh_driver_gp_xbox.c | 2 | ||||
-rw-r--r-- | src/usbh_driver_hid_mouse.c | 2 | ||||
-rw-r--r-- | src/usbh_driver_hub.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/usbh_driver_gp_xbox.c b/src/usbh_driver_gp_xbox.c index ddd62de..01cebb5 100644 --- a/src/usbh_driver_gp_xbox.c +++ b/src/usbh_driver_gp_xbox.c @@ -77,7 +77,7 @@ void gp_xbox_driver_init(const gp_xbox_config_t *config) static void *init(void *usbh_dev) { if (!initialized) { - LOG_PRINTF("\n%s/%d : driver not initialized\r\n", __FILE__, __LINE__); + LOG_PRINTF("\n%s/%d : driver not initialized\n", __FILE__, __LINE__); return 0; } diff --git a/src/usbh_driver_hid_mouse.c b/src/usbh_driver_hid_mouse.c index 94f232d..9d438a9 100644 --- a/src/usbh_driver_hid_mouse.c +++ b/src/usbh_driver_hid_mouse.c @@ -77,7 +77,7 @@ void hid_mouse_driver_init(const hid_mouse_config_t *config) static void *init(void *usbh_dev) { if (!initialized) { - LOG_PRINTF("\n%s/%d : driver not initialized\r\n", __FILE__, __LINE__); + LOG_PRINTF("\n%s/%d : driver not initialized\n", __FILE__, __LINE__); return 0; } diff --git a/src/usbh_driver_hub.c b/src/usbh_driver_hub.c index a26d7d0..6a8d16b 100644 --- a/src/usbh_driver_hub.c +++ b/src/usbh_driver_hub.c @@ -53,7 +53,7 @@ void hub_driver_init(void) static void *init(void *usbh_dev)
{
if (!initialized) {
- LOG_PRINTF("\n%s/%d : driver not initialized\r\n", __FILE__, __LINE__);
+ LOG_PRINTF("\n%s/%d : driver not initialized\n", __FILE__, __LINE__);
return 0;
}
|