From 922f5528bdf2f8d2210098ea83605b7e84267945 Mon Sep 17 00:00:00 2001 From: Warner Losh Date: Wed, 27 Sep 2017 19:22:10 +0000 Subject: [PATCH] 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. --- sys/dev/pccard/pccardvar.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/pccard/pccardvar.h b/sys/dev/pccard/pccardvar.h index 3bc27e35210..e29c51b0eae 100644 --- a/sys/dev/pccard/pccardvar.h +++ b/sys/dev/pccard/pccardvar.h @@ -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])); \