diff options
author | Johannes Stezenbach <js@linuxtv.org> | 2005-05-16 21:54:37 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-05-17 07:59:32 -0700 |
commit | 5e9e7226c13135063707a0c82766a2dd748f59e5 (patch) | |
tree | fe942fdad89f9259082a495e3f2d1ac0bd8fd080 /drivers/media/dvb/frontends/dvb-pll.h | |
parent | 71e3420111530273f2b26fabfac4d021c2a2b79f (diff) | |
download | kernel-crypto-5e9e7226c13135063707a0c82766a2dd748f59e5.tar.gz kernel-crypto-5e9e7226c13135063707a0c82766a2dd748f59e5.tar.xz kernel-crypto-5e9e7226c13135063707a0c82766a2dd748f59e5.zip |
[PATCH] dvb: dvb-pll.h: prevent multiple inclusion
added missing #ifndef and #define to inhibit multiple inclusions (Patrick
Boettcher)
Signed-off-by: Johannes Stezenbach <js@linuxtv.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/media/dvb/frontends/dvb-pll.h')
-rw-r--r-- | drivers/media/dvb/frontends/dvb-pll.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/drivers/media/dvb/frontends/dvb-pll.h b/drivers/media/dvb/frontends/dvb-pll.h index 016c794a567..c4c3c56c4a8 100644 --- a/drivers/media/dvb/frontends/dvb-pll.h +++ b/drivers/media/dvb/frontends/dvb-pll.h @@ -2,6 +2,9 @@ * $Id: dvb-pll.h,v 1.2 2005/02/10 11:43:41 kraxel Exp $ */ +#ifndef __DVB_PLL_H__ +#define __DVB_PLL_H__ + struct dvb_pll_desc { char *name; u32 min; @@ -26,9 +29,4 @@ extern struct dvb_pll_desc dvb_pll_unknown_1; int dvb_pll_configure(struct dvb_pll_desc *desc, u8 *buf, u32 freq, int bandwidth); -/* - * Local variables: - * c-basic-offset: 8 - * compile-command: "make DVB=1" - * End: - */ +#endif |