remove not needed carriage returns in printf

Signed-off-by: Amir Hammad <amir.hammad@hotmail.com>
This commit is contained in:
Amir Hammad 2016-08-23 06:41:07 +02:00
parent 64969f1935
commit 049b67b492
3 changed files with 3 additions and 3 deletions

View file

@ -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;
}

View file

@ -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;
}

View file

@ -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;
}