diff options
author | Hans Verkuil <hans.verkuil@cisco.com> | 2013-08-15 07:28:47 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <m.chehab@samsung.com> | 2013-08-24 03:26:51 -0400 |
commit | ef1ed8f5d366a035e532456bd747d34e5cb01ee5 (patch) | |
tree | 44dbe225248b063edbc20ecfd0534ea87a6b156c /include/media | |
parent | 11d034c8b60c3eebc2a12f5e99a200f55a786230 (diff) |
[media] v4l2-dv-timings: rename v4l_match_dv_timings to v4l2_match_dv_timings
It's the only function in v4l2-dv-timings.c with the v4l prefix instead
of v4l2. Make it consistent with the other functions.
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
Diffstat (limited to 'include/media')
-rw-r--r-- | include/media/v4l2-dv-timings.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/media/v4l2-dv-timings.h b/include/media/v4l2-dv-timings.h index 696e5c2fd176..43f6b67af1cb 100644 --- a/include/media/v4l2-dv-timings.h +++ b/include/media/v4l2-dv-timings.h | |||
@@ -64,7 +64,7 @@ bool v4l2_find_dv_timings_cap(struct v4l2_dv_timings *t, | |||
64 | const struct v4l2_dv_timings_cap *cap, | 64 | const struct v4l2_dv_timings_cap *cap, |
65 | unsigned pclock_delta); | 65 | unsigned pclock_delta); |
66 | 66 | ||
67 | /** v4l_match_dv_timings() - do two timings match? | 67 | /** v4l2_match_dv_timings() - do two timings match? |
68 | * @measured: the measured timings data. | 68 | * @measured: the measured timings data. |
69 | * @standard: the timings according to the standard. | 69 | * @standard: the timings according to the standard. |
70 | * @pclock_delta: maximum delta in Hz between standard->pixelclock and | 70 | * @pclock_delta: maximum delta in Hz between standard->pixelclock and |
@@ -72,9 +72,9 @@ bool v4l2_find_dv_timings_cap(struct v4l2_dv_timings *t, | |||
72 | * | 72 | * |
73 | * Returns true if the two timings match, returns false otherwise. | 73 | * Returns true if the two timings match, returns false otherwise. |
74 | */ | 74 | */ |
75 | bool v4l_match_dv_timings(const struct v4l2_dv_timings *measured, | 75 | bool v4l2_match_dv_timings(const struct v4l2_dv_timings *measured, |
76 | const struct v4l2_dv_timings *standard, | 76 | const struct v4l2_dv_timings *standard, |
77 | unsigned pclock_delta); | 77 | unsigned pclock_delta); |
78 | 78 | ||
79 | /** v4l2_print_dv_timings() - log the contents of a dv_timings struct | 79 | /** v4l2_print_dv_timings() - log the contents of a dv_timings struct |
80 | * @dev_prefix:device prefix for each log line. | 80 | * @dev_prefix:device prefix for each log line. |