diff options
author | Michael Hunold <devnull@localhost> | 2004-11-08 08:41:59 +0000 |
---|---|---|
committer | Michael Hunold <devnull@localhost> | 2004-11-08 08:41:59 +0000 |
commit | 4c1bdaf31bdb12fd6bb7d53ba39229118c61c2c3 (patch) | |
tree | 11a17dbb9b1efb12ed83bf7d2d8488edff2328aa /linux/drivers/media/dvb/b2c2/skystar2.c | |
parent | b1adb56ca9f64c2cec0ba0ebb75332e51fd4ea79 (diff) | |
download | mediapointer-dvb-s2-4c1bdaf31bdb12fd6bb7d53ba39229118c61c2c3.tar.gz mediapointer-dvb-s2-4c1bdaf31bdb12fd6bb7d53ba39229118c61c2c3.tar.bz2 |
- make needlessly global code static
- whitespace and newline cleanups
Thanks to Adrian Bunk <bunk@stusta.de>
Diffstat (limited to 'linux/drivers/media/dvb/b2c2/skystar2.c')
-rw-r--r-- | linux/drivers/media/dvb/b2c2/skystar2.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/linux/drivers/media/dvb/b2c2/skystar2.c b/linux/drivers/media/dvb/b2c2/skystar2.c index 11ac13d30..dff1659c7 100644 --- a/linux/drivers/media/dvb/b2c2/skystar2.c +++ b/linux/drivers/media/dvb/b2c2/skystar2.c @@ -786,7 +786,7 @@ static int eeprom_read(struct adapter *adapter, u16 addr, u8 *buf, u16 len) return flex_i2c_read(adapter, 0x20000000, 0x50, addr, buf, len); } -u8 calc_lrc(u8 *buf, int len) +static u8 calc_lrc(u8 *buf, int len) { int i; u8 sum; @@ -2136,7 +2136,7 @@ static int send_diseqc_msg(struct adapter *adapter, int len, u8 *msg, unsigned l } -int soft_diseqc(struct adapter *adapter, unsigned int cmd, void *arg) +static int soft_diseqc(struct adapter *adapter, unsigned int cmd, void *arg) { switch (cmd) { case FE_SET_TONE: @@ -2204,7 +2204,7 @@ static int flexcop_sleep(struct dvb_frontend* fe) return 0; } -u32 flexcop_i2c_func(struct i2c_adapter *adapter) +static u32 flexcop_i2c_func(struct i2c_adapter *adapter) { printk("flexcop_i2c_func\n"); |