From 6d25da9e51d954cb6435cf4b505f161614c8d02e Mon Sep 17 00:00:00 2001 From: Antony Pavlov Date: Tue, 10 Oct 2017 01:12:12 +0300 Subject: eeprom: at24: fix 'assignment from incompatible pointer type' warning MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The patch fixes this compiler's warning: CC drivers/eeprom/at24.o drivers/eeprom/at24.c: In function ‘at24_probe’: drivers/eeprom/at24.c:453:21: warning: assignment from incompatible pointer type [-Wincompatible-pointer-types] at24->fops.protect = at24_cdev_protect, ^ Signed-off-by: Antony Pavlov Signed-off-by: Sascha Hauer --- drivers/eeprom/at24.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'drivers/eeprom') diff --git a/drivers/eeprom/at24.c b/drivers/eeprom/at24.c index 050a35aed8..11f23319b6 100644 --- a/drivers/eeprom/at24.c +++ b/drivers/eeprom/at24.c @@ -352,7 +352,7 @@ static ssize_t at24_cdev_write(struct cdev *cdev, const void *buf, size_t count, return at24_write(at24, buf, off, count); } -static ssize_t at24_cdev_protect(struct cdev *cdev, size_t count, loff_t offset, +static int at24_cdev_protect(struct cdev *cdev, size_t count, loff_t offset, int prot) { struct at24_data *at24 = cdev->priv; -- cgit v1.2.3