Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 357340
b: refs/heads/master
c: 37b44a0
h: refs/heads/master
v: v3
  • Loading branch information
Antti Palosaari authored and Mauro Carvalho Chehab committed Jan 6, 2013
1 parent d15cd4c commit eac7650
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: ac1c86c857368eb727b7ca2c7a48bd6e373fa628
refs/heads/master: 37b44a0f04184998073633887d2f1e724aee130a
2 changes: 1 addition & 1 deletion trunk/drivers/media/usb/dvb-usb-v2/af9015.c
Original file line number Diff line number Diff line change
Expand Up @@ -1156,7 +1156,7 @@ static int af9015_init(struct dvb_usb_device *d)
return ret;
}

#if defined(CONFIG_RC_CORE) || defined(CONFIG_RC_CORE_MODULE)
#if IS_ENABLED(CONFIG_RC_CORE)
struct af9015_rc_setup {
unsigned int id;
char *rc_codes;
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/media/usb/dvb-usb-v2/af9035.c
Original file line number Diff line number Diff line change
Expand Up @@ -1146,7 +1146,7 @@ static int af9035_init(struct dvb_usb_device *d)
return ret;
}

#if defined(CONFIG_RC_CORE) || defined(CONFIG_RC_CORE_MODULE)
#if IS_ENABLED(CONFIG_RC_CORE)
static int af9035_rc_query(struct dvb_usb_device *d)
{
unsigned int key;
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/media/usb/dvb-usb-v2/anysee.c
Original file line number Diff line number Diff line change
Expand Up @@ -1019,7 +1019,7 @@ static int anysee_tuner_attach(struct dvb_usb_adapter *adap)
return ret;
}

#if defined(CONFIG_RC_CORE) || defined(CONFIG_RC_CORE_MODULE)
#if IS_ENABLED(CONFIG_RC_CORE)
static int anysee_rc_query(struct dvb_usb_device *d)
{
u8 buf[] = {CMD_GET_IR_CODE};
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/media/usb/dvb-usb-v2/az6007.c
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ static int az6007_streaming_ctrl(struct dvb_frontend *fe, int onoff)
return az6007_write(d, 0xbc, onoff, 0, NULL, 0);
}

#if defined(CONFIG_RC_CORE) || defined(CONFIG_RC_CORE_MODULE)
#if IS_ENABLED(CONFIG_RC_CORE)
/* remote control stuff (does not work with my box) */
static int az6007_rc_query(struct dvb_usb_device *d)
{
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/media/usb/dvb-usb-v2/dvb_usb_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ static int dvb_usbv2_i2c_exit(struct dvb_usb_device *d)
return 0;
}

#if defined(CONFIG_RC_CORE) || defined(CONFIG_RC_CORE_MODULE)
#if IS_ENABLED(CONFIG_RC_CORE)
static void dvb_usb_read_remote_control(struct work_struct *work)
{
struct dvb_usb_device *d = container_of(work,
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/media/usb/dvb-usb-v2/it913x.c
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ static struct i2c_algorithm it913x_i2c_algo = {
};

/* Callbacks for DVB USB */
#if defined(CONFIG_RC_CORE) || defined(CONFIG_RC_CORE_MODULE)
#if IS_ENABLED(CONFIG_RC_CORE)
static int it913x_rc_query(struct dvb_usb_device *d)
{
u8 ibuf[4];
Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/media/usb/dvb-usb-v2/rtl28xxu.c
Original file line number Diff line number Diff line change
Expand Up @@ -1125,7 +1125,7 @@ static int rtl2832u_power_ctrl(struct dvb_usb_device *d, int onoff)
return ret;
}

#if defined(CONFIG_RC_CORE) || defined(CONFIG_RC_CORE_MODULE)
#if IS_ENABLED(CONFIG_RC_CORE)
static int rtl2831u_rc_query(struct dvb_usb_device *d)
{
int ret, i;
Expand Down Expand Up @@ -1212,7 +1212,7 @@ static int rtl2831u_get_rc_config(struct dvb_usb_device *d,
#define rtl2831u_get_rc_config NULL
#endif

#if defined(CONFIG_RC_CORE) || defined(CONFIG_RC_CORE_MODULE)
#if IS_ENABLED(CONFIG_RC_CORE)
static int rtl2832u_rc_query(struct dvb_usb_device *d)
{
int ret, i;
Expand Down

0 comments on commit eac7650

Please sign in to comment.