Date: Thu, 17 Nov 2016 23:05:34 +0000 (UTC) From: Stephen Hurd <shurd@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r308787 - head/sys/dev/bnxt Message-ID: <201611172305.uAHN5Ytk060561@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: shurd (ports committer) Date: Thu Nov 17 23:05:34 2016 New Revision: 308787 URL: https://svnweb.freebsd.org/changeset/base/308787 Log: Add missing newline in error mesage Approved by: davidch MFC after: 13 days Sponsored by: Broadcom Corporation Modified: head/sys/dev/bnxt/bnxt_hwrm.c Modified: head/sys/dev/bnxt/bnxt_hwrm.c ============================================================================== --- head/sys/dev/bnxt/bnxt_hwrm.c Thu Nov 17 22:49:51 2016 (r308786) +++ head/sys/dev/bnxt/bnxt_hwrm.c Thu Nov 17 23:05:34 2016 (r308787) @@ -424,7 +424,7 @@ bnxt_hwrm_func_qcaps(struct bnxt_softc * pf->max_rx_wm_flows = le32toh(resp->max_rx_wm_flows); } if (!_is_valid_ether_addr(func->mac_addr)) { - device_printf(softc->dev, "Invalid ethernet address, generating random locally administered address"); + device_printf(softc->dev, "Invalid ethernet address, generating random locally administered address\n"); get_random_ether_addr(func->mac_addr); }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201611172305.uAHN5Ytk060561>