diff options
author | Hans Verkuil <hans.verkuil@cisco.com> | 2013-08-15 08:28:47 -0300 |
---|---|---|
committer | Chanho Park <chanho61.park@samsung.com> | 2014-11-18 11:55:19 +0900 |
commit | 33e6e8abbb6609c6df1b08e3aad91959ebcf4927 (patch) | |
tree | a04fa9a4b9232f839f431bc7b0b9f9b553d32854 /include/media | |
parent | dee67c75435c00199cb2d619e4d36dc9497fc1eb (diff) | |
download | linux-3.10-33e6e8abbb6609c6df1b08e3aad91959ebcf4927.tar.gz linux-3.10-33e6e8abbb6609c6df1b08e3aad91959ebcf4927.tar.bz2 linux-3.10-33e6e8abbb6609c6df1b08e3aad91959ebcf4927.zip |
upstream: [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 696e5c2fd17..43f6b67af1c 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, const struct v4l2_dv_timings_cap *cap, unsigned pclock_delta); -/** v4l_match_dv_timings() - do two timings match? +/** v4l2_match_dv_timings() - do two timings match? * @measured: the measured timings data. * @standard: the timings according to the standard. * @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, * * Returns true if the two timings match, returns false otherwise. */ -bool v4l_match_dv_timings(const struct v4l2_dv_timings *measured, - const struct v4l2_dv_timings *standard, - unsigned pclock_delta); +bool v4l2_match_dv_timings(const struct v4l2_dv_timings *measured, + const struct v4l2_dv_timings *standard, + unsigned pclock_delta); /** v4l2_print_dv_timings() - log the contents of a dv_timings struct * @dev_prefix:device prefix for each log line. |