mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2025-08-10 16:31:37 +00:00
Update to version 6.14.11 Signed-off-by: Mieczyslaw Nalewaj <namiltd@yahoo.com> Signed-off-by: Felix Fietkau <nbd@nbd.name>
21 lines
738 B
Diff
21 lines
738 B
Diff
--- a/drivers/net/wireless/ti/wlcore/sysfs.c
|
|
+++ b/drivers/net/wireless/ti/wlcore/sysfs.c
|
|
@@ -88,7 +88,7 @@ static ssize_t hw_pg_ver_show(struct dev
|
|
static DEVICE_ATTR_RO(hw_pg_ver);
|
|
|
|
static ssize_t wl1271_sysfs_read_fwlog(struct file *filp, struct kobject *kobj,
|
|
- const struct bin_attribute *bin_attr,
|
|
+ struct bin_attribute *bin_attr,
|
|
char *buffer, loff_t pos, size_t count)
|
|
{
|
|
struct device *dev = kobj_to_dev(kobj);
|
|
@@ -121,7 +121,7 @@ static ssize_t wl1271_sysfs_read_fwlog(s
|
|
|
|
static const struct bin_attribute fwlog_attr = {
|
|
.attr = { .name = "fwlog", .mode = 0400 },
|
|
- .read_new = wl1271_sysfs_read_fwlog,
|
|
+ .read = wl1271_sysfs_read_fwlog,
|
|
};
|
|
|
|
int wlcore_sysfs_init(struct wl1271 *wl)
|