diff options
author | Hans Petter Selasky <hselasky@c2i.net> | 2011-05-23 10:06:22 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2011-05-25 20:42:26 -0400 |
commit | 96c68795dc28aa3b1ade2194779c7d45320699cf (patch) | |
tree | 778aa403d9d17f128b2ddf3832f1b7145462847a /drivers/media/dvb | |
parent | 2edcdfae98f2234336d5646befa6247ae03d12e8 (diff) |
[media] Inlined functions should be static
Signed-off-by: Hans Petter Selasky <hselasky@c2i.net>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/dvb')
-rw-r--r-- | drivers/media/dvb/frontends/stb0899_algo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/dvb/frontends/stb0899_algo.c b/drivers/media/dvb/frontends/stb0899_algo.c index 2da55ec20392..d70eee00f33a 100644 --- a/drivers/media/dvb/frontends/stb0899_algo.c +++ b/drivers/media/dvb/frontends/stb0899_algo.c | |||
@@ -23,7 +23,7 @@ | |||
23 | #include "stb0899_priv.h" | 23 | #include "stb0899_priv.h" |
24 | #include "stb0899_reg.h" | 24 | #include "stb0899_reg.h" |
25 | 25 | ||
26 | inline u32 stb0899_do_div(u64 n, u32 d) | 26 | static inline u32 stb0899_do_div(u64 n, u32 d) |
27 | { | 27 | { |
28 | /* wrap do_div() for ease of use */ | 28 | /* wrap do_div() for ease of use */ |
29 | 29 | ||