mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 14:13:16 +00:00
58acb1dd2c
This adds a bunch of patches for the v6.1 Gemini kernel. For v5.15 this was down to a single upstream patch, but for kernel v6.2 I reworked the USB code for FOTG210, so instead of carrying over the half-baked and incomplete patch from v5.15 I just backported all the v6.2 patches, 31 in total, as it creates full device USB mode for e.g. D-Link DNS-313. Signed-off-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Christian Lamparter <chunkeey@gmail.com>
33 lines
1.2 KiB
Diff
33 lines
1.2 KiB
Diff
From 482830a70408a5d30af264b3d6706f818c78b2b2 Mon Sep 17 00:00:00 2001
|
|
From: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
|
|
Date: Fri, 20 Jan 2023 17:44:33 +0200
|
|
Subject: [PATCH 24/29] usb: fotg210-hcd: use sysfs_emit() to instead of
|
|
scnprintf()
|
|
|
|
Follow the advice of the Documentation/filesystems/sysfs.rst and show()
|
|
should only use sysfs_emit() or sysfs_emit_at() when formatting the
|
|
value to be returned to user space.
|
|
|
|
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
|
|
Link: https://lore.kernel.org/r/20230120154437.22025-1-andriy.shevchenko@linux.intel.com
|
|
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
|
|
---
|
|
--- a/drivers/usb/fotg210/fotg210-hcd.c
|
|
+++ b/drivers/usb/fotg210/fotg210-hcd.c
|
|
@@ -4686,14 +4686,11 @@ static ssize_t uframe_periodic_max_show(
|
|
struct device_attribute *attr, char *buf)
|
|
{
|
|
struct fotg210_hcd *fotg210;
|
|
- int n;
|
|
|
|
fotg210 = hcd_to_fotg210(bus_to_hcd(dev_get_drvdata(dev)));
|
|
- n = scnprintf(buf, PAGE_SIZE, "%d\n", fotg210->uframe_periodic_max);
|
|
- return n;
|
|
+ return sysfs_emit(buf, "%d\n", fotg210->uframe_periodic_max);
|
|
}
|
|
|
|
-
|
|
static ssize_t uframe_periodic_max_store(struct device *dev,
|
|
struct device_attribute *attr, const char *buf, size_t count)
|
|
{
|