Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

[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>

authored by

Johannes Stezenbach and committed by
Linus Torvalds
5e9e7226 71e34201

+4 -6
+4 -6
drivers/media/dvb/frontends/dvb-pll.h
··· 2 2 * $Id: dvb-pll.h,v 1.2 2005/02/10 11:43:41 kraxel Exp $ 3 3 */ 4 4 5 + #ifndef __DVB_PLL_H__ 6 + #define __DVB_PLL_H__ 7 + 5 8 struct dvb_pll_desc { 6 9 char *name; 7 10 u32 min; ··· 29 26 int dvb_pll_configure(struct dvb_pll_desc *desc, u8 *buf, 30 27 u32 freq, int bandwidth); 31 28 32 - /* 33 - * Local variables: 34 - * c-basic-offset: 8 35 - * compile-command: "make DVB=1" 36 - * End: 37 - */ 29 + #endif