diff options
author | Jean Delvare <khali@linux-fr.org> | 2009-07-28 10:41:35 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-09-12 11:18:24 -0400 |
commit | 157da2762c610073e76329bb030e993fb4c2cc77 (patch) | |
tree | 60a0b278bae4c828ffc7a1098e828c7aef8b6a1e /drivers/media/video/ir-kbd-i2c.c | |
parent | 5376176199fdd55e6310738bfacb57bf606f16bf (diff) |
V4L/DVB (12365): ir-kbd-i2c: Remove superfulous inlines
Functions which are referenced by their address can't be inlined by
definition.
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 'drivers/media/video/ir-kbd-i2c.c')
-rw-r--r-- | drivers/media/video/ir-kbd-i2c.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/video/ir-kbd-i2c.c b/drivers/media/video/ir-kbd-i2c.c index 86f2fefe1edf..6e4a2341edf8 100644 --- a/drivers/media/video/ir-kbd-i2c.c +++ b/drivers/media/video/ir-kbd-i2c.c | |||
@@ -122,12 +122,12 @@ static int get_key_haup_common(struct IR_i2c *ir, u32 *ir_key, u32 *ir_raw, | |||
122 | return 1; | 122 | return 1; |
123 | } | 123 | } |
124 | 124 | ||
125 | static inline int get_key_haup(struct IR_i2c *ir, u32 *ir_key, u32 *ir_raw) | 125 | static int get_key_haup(struct IR_i2c *ir, u32 *ir_key, u32 *ir_raw) |
126 | { | 126 | { |
127 | return get_key_haup_common (ir, ir_key, ir_raw, 3, 0); | 127 | return get_key_haup_common (ir, ir_key, ir_raw, 3, 0); |
128 | } | 128 | } |
129 | 129 | ||
130 | static inline int get_key_haup_xvr(struct IR_i2c *ir, u32 *ir_key, u32 *ir_raw) | 130 | static int get_key_haup_xvr(struct IR_i2c *ir, u32 *ir_key, u32 *ir_raw) |
131 | { | 131 | { |
132 | return get_key_haup_common (ir, ir_key, ir_raw, 6, 3); | 132 | return get_key_haup_common (ir, ir_key, ir_raw, 6, 3); |
133 | } | 133 | } |