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

Commit dfc3aa72 authored by Samuel Ortiz's avatar Samuel Ortiz
Browse files

mfd: fix ab3100 warning on x86_64



The file_operations write prototype should return a ssize_t.

Signed-off-by: default avatarSamuel Ortiz <sameo@linux.intel.com>
parent ab86e576
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -465,14 +465,14 @@ static int ab3100_get_set_reg_open_file(struct inode *inode, struct file *file)
	return 0;
}

static int ab3100_get_set_reg(struct file *file,
static ssize_t ab3100_get_set_reg(struct file *file,
				  const char __user *user_buf,
				  size_t count, loff_t *ppos)
{
	struct ab3100_get_set_reg_priv *priv = file->private_data;
	struct ab3100 *ab3100 = priv->ab3100;
	char buf[32];
	int buf_size;
	ssize_t buf_size;
	int regp;
	unsigned long user_reg;
	int err;