diff options
| author | Christian Marangi <ansuelsmth@gmail.com> | 2023-07-23 14:26:13 +0200 |
|---|---|---|
| committer | Christian Marangi <ansuelsmth@gmail.com> | 2023-07-23 14:45:18 +0200 |
| commit | 8912e386e3c3876255ad3b70ccf281bad64ddb4a (patch) | |
| tree | fc769122524e228cc0add3260467191ac45eb00a /target/linux | |
| parent | a680ac8bcbcff4a583b101e6c5a4c02644555a7b (diff) | |
| download | upstream-8912e386e3c3876255ad3b70ccf281bad64ddb4a.tar.gz upstream-8912e386e3c3876255ad3b70ccf281bad64ddb4a.tar.bz2 upstream-8912e386e3c3876255ad3b70ccf281bad64ddb4a.zip | |
bcm27xx: update dwc_otc driver with new kthread_complete_and_exit name
Kernel 6.1 renamed and moved complete_and_exit to
kthread_complete_and_exit.
This was just a rename and nothing is changed implementation wise.
Update to the new symbol name to fix compilation error.
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
Diffstat (limited to 'target/linux')
| -rw-r--r-- | target/linux/bcm27xx/patches-6.1/950-0106-Add-dwc_otg-driver.patch | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/bcm27xx/patches-6.1/950-0106-Add-dwc_otg-driver.patch b/target/linux/bcm27xx/patches-6.1/950-0106-Add-dwc_otg-driver.patch index 6980592085d..a3d861ec2f8 100644 --- a/target/linux/bcm27xx/patches-6.1/950-0106-Add-dwc_otg-driver.patch +++ b/target/linux/bcm27xx/patches-6.1/950-0106-Add-dwc_otg-driver.patch @@ -4574,7 +4574,7 @@ Signed-off-by: Jonathan Bell <jonathan@raspberrypi.com> + usb_gadget_unregister_driver(&fsg_driver); + + /* Let the unbind and cleanup routines know the thread has exited */ -+ complete_and_exit(&fsg->thread_notifier, 0); ++ kthread_complete_and_exit(&fsg->thread_notifier, 0); +} + + |
