staging: et131x: Add spinlock definition comments
authorMark Einon <mark.einon@gmail.com>
Sun, 14 Sep 2014 15:59:02 +0000 (16:59 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 19 Sep 2014 23:04:52 +0000 (16:04 -0700)
Checkpatch --strict advises that spinlocks should be described when
defined, seems a good idea so this change does that.

Signed-off-by: Mark Einon <mark.einon@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/et131x/et131x.c

index 3b62f7691804cebe5098259784a9a510821d1a58..c158b01a55699df9d91bf2f21bbdf167594a40ad 100644 (file)
@@ -474,10 +474,9 @@ struct et131x_adapter {
        bool has_eeprom;
        u8 eeprom_data[2];
 
-       /* Spinlocks */
-       spinlock_t tcb_send_qlock;
-       spinlock_t tcb_ready_qlock;
-       spinlock_t rcv_lock;
+       spinlock_t tcb_send_qlock; /* protects the tx_ring send tcb list */
+       spinlock_t tcb_ready_qlock; /* protects the tx_ring ready tcb list */
+       spinlock_t rcv_lock; /* protects the rx_ring receive list */
 
        /* Packet Filter and look ahead size */
        u32 packet_filter;
This page took 0.029136 seconds and 5 git commands to generate.