|
@@ -41,7 +41,7 @@ struct tx_cxt {
|
|
|
#if defined(CONFIG_WIMAX_GDM72XX_USB_PM) || defined(CONFIG_WIMAX_GDM72XX_K_MODE)
|
|
|
struct list_head pending_list;
|
|
|
#endif
|
|
|
- spinlock_t lock;
|
|
|
+ spinlock_t lock; /* Protect structure fields */
|
|
|
};
|
|
|
|
|
|
struct usb_rx {
|
|
@@ -56,7 +56,7 @@ struct usb_rx {
|
|
|
struct rx_cxt {
|
|
|
struct list_head free_list;
|
|
|
struct list_head used_list;
|
|
|
- spinlock_t lock;
|
|
|
+ spinlock_t lock; /* Protect structure fields */
|
|
|
};
|
|
|
|
|
|
struct usbwm_dev {
|