1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-17 10:26:15 +00:00

Create new _ND versions to allow one to not specify the description be

stored in the table.
This commit is contained in:
Warner Losh 2003-04-08 15:28:58 +00:00
parent c3805dd0ad
commit bf1f89d49c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=113257

View File

@ -378,4 +378,9 @@ enum {
#define PCMCIA_CARD2(v1, p1, p2, f) \
{ PCMCIA_STR_ ## p2, PCMCIA_VENDOR_ ## v1, PCCARD_P(v1, p1), \
f, PCMCIA_CIS_ ## p2}
#define PCMCIA_CARD_ND(v, p, f) { NULL, PCMCIA_VENDOR_ ## v, \
PCCARD_P(v, p), f, PCCARD_C(v, p) }
#define PCMCIA_CARD2_ND(v1, p1, p2, f) \
{ NULL, PCMCIA_VENDOR_ ## v1, PCCARD_P(v1, p1), \
f, PCMCIA_CIS_ ## p2}