Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 39571
b: refs/heads/master
c: fc13d92
h: refs/heads/master
i:
  39569: ba1e5c9
  39567: 6838b21
v: v3
  • Loading branch information
Michael Krufky authored and Mauro Carvalho Chehab committed Oct 14, 2006
1 parent fbb1665 commit c36112b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 934765b8e2f211aec119dbdd9feea6d3f2ffaf7e
refs/heads/master: fc13d929cc7af3c0da09ea2b6d23465b933e279d
9 changes: 9 additions & 0 deletions trunk/drivers/media/dvb/frontends/tda10086.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,16 @@ struct tda10086_config
u8 invert;
};

#if defined(CONFIG_DVB_TDA10086) || defined(CONFIG_DVB_TDA10086_MODULE)
extern struct dvb_frontend* tda10086_attach(const struct tda10086_config* config,
struct i2c_adapter* i2c);
#else
static inline struct dvb_frontend* tda10086_attach(const struct tda10086_config* config,
struct i2c_adapter* i2c)
{
printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __FUNCTION__);
return NULL;
}
#endif // CONFIG_DVB_TDA10086

#endif // TDA10086_H

0 comments on commit c36112b

Please sign in to comment.