diff options
author | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-07-28 11:41:35 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-07-28 11:41:35 -0300 |
commit | 8239798d50a90e8d80bafdeade1aa38e77c537e1 (patch) | |
tree | b45ebfe6a9bde7255c988aa23409402ae812c75e /linux | |
parent | 51e081d10118c1d432f7aedc4cadd3776d56e700 (diff) | |
download | mediapointer-dvb-s2-8239798d50a90e8d80bafdeade1aa38e77c537e1.tar.gz mediapointer-dvb-s2-8239798d50a90e8d80bafdeade1aa38e77c537e1.tar.bz2 |
ir-kbd-i2c: Remove superfulous inlines
From: Jean Delvare <khali@linux-fr.org>
Functions which are referenced by their address can't be inlined by
definition.
Priority: normal
Signed-off-by: Jean Delvare <khali@linux-fr.org>
Signed-off-by: Andy Walls <awalls@radix.net>
Signed-off-by: Douglas Schilling Landgraf <dougsland@redhat.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'linux')
-rw-r--r-- | linux/drivers/media/video/ir-kbd-i2c.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linux/drivers/media/video/ir-kbd-i2c.c b/linux/drivers/media/video/ir-kbd-i2c.c index fffe8239d..c61b22d25 100644 --- a/linux/drivers/media/video/ir-kbd-i2c.c +++ b/linux/drivers/media/video/ir-kbd-i2c.c @@ -127,12 +127,12 @@ static int get_key_haup_common(struct IR_i2c *ir, u32 *ir_key, u32 *ir_raw, return 1; } -static inline int get_key_haup(struct IR_i2c *ir, u32 *ir_key, u32 *ir_raw) +static int get_key_haup(struct IR_i2c *ir, u32 *ir_key, u32 *ir_raw) { return get_key_haup_common (ir, ir_key, ir_raw, 3, 0); } -static inline int get_key_haup_xvr(struct IR_i2c *ir, u32 *ir_key, u32 *ir_raw) +static int get_key_haup_xvr(struct IR_i2c *ir, u32 *ir_key, u32 *ir_raw) { return get_key_haup_common (ir, ir_key, ir_raw, 6, 3); } |