Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit eb169d1c authored by Javier Martinez Canillas's avatar Javier Martinez Canillas Committed by Greg Kroah-Hartman
Browse files

Staging: batman-adv: fix function prototype



In today linux-next I got a compile warning in staging/batman-adv.

This is due a struct bin_attribute read function prototype change and the driver was not updated.

This patch solves the issue

Signed-off-by: default avatarJavier Martinez Canillas <martinez.javier@gmail.com>
Signed-off-by: default avatarSven Eckelmann <sven.eckelmann@gmx.de>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 25477f23
Loading
Loading
Loading
Loading
+12 −12
Original line number Diff line number Diff line
@@ -225,7 +225,7 @@ static struct bat_attribute *mesh_attrs[] = {
	NULL,
};

static ssize_t transtable_local_read(struct kobject *kobj,
static ssize_t transtable_local_read(struct file *filp, struct kobject *kobj,
				  struct bin_attribute *bin_attr,
				  char *buff, loff_t off, size_t count)
{
@@ -235,7 +235,7 @@ static ssize_t transtable_local_read(struct kobject *kobj,
	return hna_local_fill_buffer_text(net_dev, buff, count, off);
}

static ssize_t transtable_global_read(struct kobject *kobj,
static ssize_t transtable_global_read(struct file *filp, struct kobject *kobj,
				  struct bin_attribute *bin_attr,
				  char *buff, loff_t off, size_t count)
{
@@ -245,7 +245,7 @@ static ssize_t transtable_global_read(struct kobject *kobj,
	return hna_global_fill_buffer_text(net_dev, buff, count, off);
}

static ssize_t originators_read(struct kobject *kobj,
static ssize_t originators_read(struct file *filp, struct kobject *kobj,
				  struct bin_attribute *bin_attr,
				  char *buff, loff_t off, size_t count)
{
@@ -255,7 +255,7 @@ static ssize_t originators_read(struct kobject *kobj,
	return orig_fill_buffer_text(net_dev, buff, count, off);
}

static ssize_t vis_data_read(struct kobject *kobj,
static ssize_t vis_data_read(struct file *filp, struct kobject *kobj,
				  struct bin_attribute *bin_attr,
				  char *buff, loff_t off, size_t count)
{