Update odroidxu4-current to 6.6.128

This commit is contained in:
Julian Sikorski 2026-03-05 15:34:43 +01:00 committed by Igor
parent c27048a57d
commit 5acad3ad65
6 changed files with 33741 additions and 0 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,62 @@
diff --git a/Makefile b/Makefile
index 4a944e80769044..54c385978feed5 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
# SPDX-License-Identifier: GPL-2.0
VERSION = 6
PATCHLEVEL = 6
-SUBLEVEL = 125
+SUBLEVEL = 126
EXTRAVERSION =
NAME = Pinguïn Aangedreven
diff --git a/drivers/base/base.h b/drivers/base/base.h
index 35e14bebbfb2c2..0b491449b022a1 100644
--- a/drivers/base/base.h
+++ b/drivers/base/base.h
@@ -165,18 +165,9 @@ void device_set_deferred_probe_reason(const struct device *dev, struct va_format
static inline int driver_match_device(struct device_driver *drv,
struct device *dev)
{
- device_lock_assert(dev);
-
return drv->bus->match ? drv->bus->match(dev, drv) : 1;
}
-static inline int driver_match_device_locked(struct device_driver *drv,
- struct device *dev)
-{
- guard(device)(dev);
- return driver_match_device(drv, dev);
-}
-
static inline void dev_sync_state(struct device *dev)
{
if (dev->bus->sync_state)
diff --git a/drivers/base/bus.c b/drivers/base/bus.c
index 27f8442a3aa9dd..b97e13a52c3308 100644
--- a/drivers/base/bus.c
+++ b/drivers/base/bus.c
@@ -263,7 +263,7 @@ static ssize_t bind_store(struct device_driver *drv, const char *buf,
int err = -ENODEV;
dev = bus_find_device_by_name(bus, NULL, buf);
- if (dev && driver_match_device_locked(drv, dev)) {
+ if (dev && driver_match_device(drv, dev)) {
err = device_driver_attach(drv, dev);
if (!err) {
/* success */
diff --git a/drivers/base/dd.c b/drivers/base/dd.c
index 07f1332dd3a440..7e2fb159bb895b 100644
--- a/drivers/base/dd.c
+++ b/drivers/base/dd.c
@@ -1169,7 +1169,7 @@ static int __driver_attach(struct device *dev, void *data)
* is an error.
*/
- ret = driver_match_device_locked(drv, dev);
+ ret = driver_match_device(drv, dev);
if (ret == 0) {
/* no match */
return 0;

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff