svn commit: r324069 - head/sys/dev/pccard

Warner Losh imp at FreeBSD.org
Wed Sep 27 19:22:15 UTC 2017


Author: imp
Date: Wed Sep 27 19:22:10 2017
New Revision: 324069
URL: https://svnweb.freebsd.org/changeset/base/324069

Log:
  Since the human readable name is actually ignored, and not matching a
  'human' pnp string, change it to #, the name reserved for fields that
  are ignored.

Modified:
  head/sys/dev/pccard/pccardvar.h

Modified: head/sys/dev/pccard/pccardvar.h
==============================================================================
--- head/sys/dev/pccard/pccardvar.h	Wed Sep 27 19:21:52 2017	(r324068)
+++ head/sys/dev/pccard/pccardvar.h	Wed Sep 27 19:22:10 2017	(r324069)
@@ -91,7 +91,7 @@ struct pccard_product {
  * are informative, according to the standard, but I have a dim memory of using these
  * strings to match things, though I can't find the example right now.
  */
-#define PCCARD_PNP_DESCR "D:human;V32:manufacturer;V32:product;Z:cisvendor;Z:cisproduct;"
+#define PCCARD_PNP_DESCR "D:#;V32:manufacturer;V32:product;Z:cisvendor;Z:cisproduct;"
 #define PCCARD_PNP_INFO(t) \
 	MODULE_PNP_INFO(PCCARD_PNP_DESCR, pccard, t, t, sizeof(t[0]), sizeof(t) / sizeof(t[0])); \
 


More information about the svn-src-all mailing list