diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2022-07-10 09:51:56 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2022-07-10 09:51:56 -0700 |
commit | 5867f3b88bb54016c42cdde510c184255488a12b (patch) | |
tree | a0b91026e35c58421f1148e4a9fcf839ff07b02d | |
parent | b41362fdf26710693535fade5e4eeda019c3b410 (diff) | |
parent | ee6c6e7342471d468096a16bee9f89b5a6c1e39d (diff) | |
download | linux-5867f3b88bb54016c42cdde510c184255488a12b.tar.gz linux-5867f3b88bb54016c42cdde510c184255488a12b.tar.bz2 linux-5867f3b88bb54016c42cdde510c184255488a12b.zip |
Merge tag 'staging-5.19-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging
Pull staging driver fix from Greg KH:
"Here is a single staging driver fix for a reported problem that showed
up in 5.19-rc1 in the wlan-ng driver. It has been in linux-next for a
week with no reported problems"
* tag 'staging-5.19-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging:
staging/wlan-ng: get the correct struct hfa384x in work callback
-rw-r--r-- | drivers/staging/wlan-ng/hfa384x_usb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/wlan-ng/hfa384x_usb.c b/drivers/staging/wlan-ng/hfa384x_usb.c index 33844526c797..02fdef7a16c8 100644 --- a/drivers/staging/wlan-ng/hfa384x_usb.c +++ b/drivers/staging/wlan-ng/hfa384x_usb.c @@ -2632,7 +2632,7 @@ static void hfa384x_usbctlx_reaper_task(struct work_struct *work) */ static void hfa384x_usbctlx_completion_task(struct work_struct *work) { - struct hfa384x *hw = container_of(work, struct hfa384x, reaper_bh); + struct hfa384x *hw = container_of(work, struct hfa384x, completion_bh); struct hfa384x_usbctlx *ctlx, *temp; unsigned long flags; |