@@ -678,7 +678,7 @@ void wifi_mgmt_raise_neighbor_rep_recv_event(struct net_if *iface, char *inbuf,
678
678
LOG_INF ("Maximum neighbors added to list, Skipping." );
679
679
}
680
680
} else {
681
- LOG_INF ("Failed to Parse Neighbor Report - Skipping entry\n " );
681
+ LOG_INF ("Failed to Parse Neighbor Report - Skipping entry" );
682
682
}
683
683
}
684
684
#endif
@@ -1038,7 +1038,7 @@ static int wifi_set_twt(uint64_t mgmt_request, struct net_if *iface,
1038
1038
}
1039
1039
#else
1040
1040
NET_WARN ("Check for valid IP address been disabled. "
1041
- "Device might be unreachable or might not receive traffic.\n " );
1041
+ "Device might be unreachable or might not receive traffic." );
1042
1042
#endif /* CONFIG_WIFI_MGMT_TWT_CHECK_IP */
1043
1043
1044
1044
if (info .link_mode < WIFI_6 ) {
@@ -1537,7 +1537,7 @@ static int __stored_creds_to_params(struct wifi_credentials_personal *creds,
1537
1537
{
1538
1538
/* SSID */
1539
1539
if (creds -> header .ssid_len > WIFI_SSID_MAX_LEN ) {
1540
- LOG_ERR ("SSID string truncated\n " );
1540
+ LOG_ERR ("SSID string truncated" );
1541
1541
return - EINVAL ;
1542
1542
}
1543
1543
@@ -1557,7 +1557,7 @@ static int __stored_creds_to_params(struct wifi_credentials_personal *creds,
1557
1557
if (params -> security == WIFI_SECURITY_TYPE_EAP_TLS ) {
1558
1558
if (creds -> header .key_passwd_length > 0 ) {
1559
1559
if (creds -> header .key_passwd_length > WIFI_ENT_PSWD_MAX_LEN ) {
1560
- LOG_ERR ("key_passwd string truncated\n " );
1560
+ LOG_ERR ("key_passwd string truncated" );
1561
1561
return - EINVAL ;
1562
1562
}
1563
1563
memcpy ((uint8_t * )params -> key_passwd , creds -> header .key_passwd ,
0 commit comments