Skip to content

Commit

Permalink
[media] az6007: make all functions static
Browse files Browse the repository at this point in the history
There's no reason why those functions shouldn't be static.

Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
  • Loading branch information
Mauro Carvalho Chehab committed Aug 6, 2012
1 parent 3cb9f4e commit 0ca477e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/media/dvb/dvb-usb-v2/az6007.c
Original file line number Diff line number Diff line change
Expand Up @@ -635,7 +635,7 @@ static int az6007_tuner_attach(struct dvb_usb_adapter *adap)
return 0;
}

int az6007_power_ctrl(struct dvb_usb_device *d, int onoff)
static int az6007_power_ctrl(struct dvb_usb_device *d, int onoff)
{
struct az6007_device_state *state = d_to_priv(d);
int ret;
Expand Down Expand Up @@ -784,7 +784,7 @@ static struct i2c_algorithm az6007_i2c_algo = {
.functionality = az6007_i2c_func,
};

int az6007_identify_state(struct dvb_usb_device *d, const char **name)
static int az6007_identify_state(struct dvb_usb_device *d, const char **name)
{
int ret;
u8 *mac;
Expand Down

0 comments on commit 0ca477e

Please sign in to comment.