diff options
author | Hans Verkuil <hans.verkuil@cisco.com> | 2016-08-02 13:11:00 +0200 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2016-08-22 18:09:06 +0200 |
commit | 62148f0930a8e9bd5c5614f8387222f0220d7d47 (patch) | |
tree | d58c85b8e8114a39b7680008241213c817d7ba24 /include | |
parent | Linux 4.8-rc3 (diff) | |
download | linux-62148f0930a8e9bd5c5614f8387222f0220d7d47.tar.xz linux-62148f0930a8e9bd5c5614f8387222f0220d7d47.zip |
[media] cec: rename cec_devnode fhs_lock to just lock
This lock will be used to protect more than just the fhs list.
So rename it to just 'lock'.
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/media/cec.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/media/cec.h b/include/media/cec.h index dc7854b855f3..fdb5d600e4bb 100644 --- a/include/media/cec.h +++ b/include/media/cec.h @@ -57,8 +57,8 @@ struct cec_devnode { int minor; bool registered; bool unregistered; - struct mutex fhs_lock; struct list_head fhs; + struct mutex lock; }; struct cec_adapter; |