Date: Thu, 2 Oct 2014 22:05:48 +0000 (UTC) From: "George V. Neville-Neil" <gnn@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r272452 - head/sys/dev/sfxge Message-ID: <201410022205.s92M5mI9034285@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: gnn Date: Thu Oct 2 22:05:48 2014 New Revision: 272452 URL: https://svnweb.freebsd.org/changeset/base/272452 Log: Fixup the setting of the baud rate. Modified: head/sys/dev/sfxge/sfxge_port.c Modified: head/sys/dev/sfxge/sfxge_port.c ============================================================================== --- head/sys/dev/sfxge/sfxge_port.c Thu Oct 2 21:34:52 2014 (r272451) +++ head/sys/dev/sfxge/sfxge_port.c Thu Oct 2 22:05:48 2014 (r272452) @@ -220,14 +220,14 @@ sfxge_port_link_fc_handler(SYSCTL_HANDLE #endif /* SFXGE_HAVE_PAUSE_MEDIAOPTS */ -static const u_long sfxge_link_baudrate[EFX_LINK_NMODES] = { +static const uint64_t sfxge_link_baudrate[EFX_LINK_NMODES] = { [EFX_LINK_10HDX] = IF_Mbps(10), [EFX_LINK_10FDX] = IF_Mbps(10), [EFX_LINK_100HDX] = IF_Mbps(100), [EFX_LINK_100FDX] = IF_Mbps(100), [EFX_LINK_1000HDX] = IF_Gbps(1), [EFX_LINK_1000FDX] = IF_Gbps(1), - [EFX_LINK_10000FDX] = MIN(IF_Gbps(10ULL), ULONG_MAX), + [EFX_LINK_10000FDX] = IF_Gbps(10), }; void
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201410022205.s92M5mI9034285>