diff options
author | Sven Schnelle <svens@linux.ibm.com> | 2022-12-05 10:57:01 +0300 |
---|---|---|
committer | Heiko Carstens <hca@linux.ibm.com> | 2023-01-09 16:34:03 +0300 |
commit | fd2a41d07b2f8be0f490f8f78280e574eb9bda5a (patch) | |
tree | 670f4c95c572cc206ba93b1b8e6bd01221544165 /drivers/s390/char/raw3270.h | |
parent | 0d85d8edaf302f070da0ba838fdefe8afa3ef681 (diff) | |
download | linux-fd2a41d07b2f8be0f490f8f78280e574eb9bda5a.tar.xz |
s390/raw3270: add comment to spinlock member
Add a small comment to the lock member of struct raw3270_view
to make checkpatch happy.
Signed-off-by: Sven Schnelle <svens@linux.ibm.com>
Acked-by: Heiko Carstens <hca@linux.ibm.com>
Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
Diffstat (limited to 'drivers/s390/char/raw3270.h')
-rw-r--r-- | drivers/s390/char/raw3270.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/s390/char/raw3270.h b/drivers/s390/char/raw3270.h index 449eae127b72..47b41778faae 100644 --- a/drivers/s390/char/raw3270.h +++ b/drivers/s390/char/raw3270.h @@ -159,7 +159,7 @@ struct raw3270_fn { */ struct raw3270_view { struct list_head list; - spinlock_t lock; + spinlock_t lock; /* protects members of view */ #define RAW3270_VIEW_LOCK_IRQ 0 #define RAW3270_VIEW_LOCK_BH 1 atomic_t ref_count; |