Tweak the 'I' flagged value

'I' was omitting 'zero' values. This is not quite correct, and was put
in as a hack but not documented. Remove it. If we find what the hack
was really needed for, we'll either fix the need for it, or invent a
new flagged value type.

Submitted by: hps@
Sponsored by: Netflix
This commit is contained in:
Warner Losh 2018-02-17 06:57:30 +00:00
parent b9c40202d8
commit 5e0195c8f5
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=329443

View file

@ -285,7 +285,7 @@ search_hints(const char *bus, const char *dev, const char *pnpinfo)
break;
/*FALLTHROUGH*/
case 'I':
if (v != ival && ival != 0)
if (v != ival)
notme++;
break;
case 'G':