Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 14 Jan 2015 05:41:31 +0000 (UTC)
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r277163 - head/sys/dev/cardbus
Message-ID:  <201501140541.t0E5fV00070032@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: imp
Date: Wed Jan 14 05:41:31 2015
New Revision: 277163
URL: https://svnweb.freebsd.org/changeset/base/277163

Log:
  Add a rather obnoxious warning if you don't have NEW_PCIB defined
  since it's a total crap shoot if things will work.

Modified:
  head/sys/dev/cardbus/cardbus.c

Modified: head/sys/dev/cardbus/cardbus.c
==============================================================================
--- head/sys/dev/cardbus/cardbus.c	Wed Jan 14 05:41:28 2015	(r277162)
+++ head/sys/dev/cardbus/cardbus.c	Wed Jan 14 05:41:31 2015	(r277163)
@@ -106,6 +106,8 @@ cardbus_attach(device_t cbdev)
 		device_printf(cbdev, "failed to allocate bus number\n");
 		return (ENXIO);
 	}
+#else
+	device_printf(cbdev, "Your bus numbers may be AFU\n");
 #endif
 	return (0);
 }



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201501140541.t0E5fV00070032>