diff options
author | Hans Verkuil <hans.verkuil@cisco.com> | 2016-08-02 08:11:00 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2016-08-22 13:09:06 -0300 |
commit | 62148f0930a8e9bd5c5614f8387222f0220d7d47 (patch) | |
tree | d58c85b8e8114a39b7680008241213c817d7ba24 /include/media/cec.h | |
parent | fa8410b355251fd30341662a40ac6b22d3e38468 (diff) | |
download | linux-62148f0930a8e9bd5c5614f8387222f0220d7d47.tar.bz2 |
[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/media/cec.h')
-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; |