pcmcia: device_id header cleanup
Wrap in #ifdef to include header just once, and wrap in another #ifdef to avoid it being used in userspace. Also, format the header similar to the other PCMCIA header files. Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
This commit is contained in:
parent
d39bd56452
commit
35200d865d
|
@ -1,10 +1,19 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (2003-2004) Dominik Brodowski <linux@brodo.de>
|
* device_id.h -- PCMCIA driver matching helpers
|
||||||
* David Woodhouse
|
|
||||||
*
|
*
|
||||||
* License: GPL v2
|
* This program is free software; you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License version 2 as
|
||||||
|
* published by the Free Software Foundation.
|
||||||
|
*
|
||||||
|
* (C) 2003 - 2004 David Woodhouse
|
||||||
|
* (C) 2003 - 2004 Dominik Brodowski
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#ifndef _LINUX_PCMCIA_DEVICE_ID_H
|
||||||
|
#define _LINUX_PCMCIA_DEVICE_ID_H
|
||||||
|
|
||||||
|
#ifdef __KERNEL__
|
||||||
|
|
||||||
#define PCMCIA_DEVICE_MANF_CARD(manf, card) { \
|
#define PCMCIA_DEVICE_MANF_CARD(manf, card) { \
|
||||||
.match_flags = PCMCIA_DEV_ID_MATCH_MANF_ID| \
|
.match_flags = PCMCIA_DEV_ID_MATCH_MANF_ID| \
|
||||||
PCMCIA_DEV_ID_MATCH_CARD_ID, \
|
PCMCIA_DEV_ID_MATCH_CARD_ID, \
|
||||||
|
@ -256,3 +265,6 @@
|
||||||
|
|
||||||
|
|
||||||
#define PCMCIA_DEVICE_NULL { .match_flags = 0, }
|
#define PCMCIA_DEVICE_NULL { .match_flags = 0, }
|
||||||
|
|
||||||
|
#endif /* __KERNEL__ */
|
||||||
|
#endif /* _LINUX_PCMCIA_DEVICE_ID_H */
|
||||||
|
|
Loading…
Reference in New Issue