Skip to content

Commit 5867f3b

Browse files
committed
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
2 parents b41362f + ee6c6e7 commit 5867f3b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/staging/wlan-ng/hfa384x_usb.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2632,7 +2632,7 @@ static void hfa384x_usbctlx_reaper_task(struct work_struct *work)
26322632
*/
26332633
static void hfa384x_usbctlx_completion_task(struct work_struct *work)
26342634
{
2635-
struct hfa384x *hw = container_of(work, struct hfa384x, reaper_bh);
2635+
struct hfa384x *hw = container_of(work, struct hfa384x, completion_bh);
26362636
struct hfa384x_usbctlx *ctlx, *temp;
26372637
unsigned long flags;
26382638

0 commit comments

Comments
 (0)