From 27f3f993b842b75518d81e83485166909f0af54c Mon Sep 17 00:00:00 2001 From: Jean-Christophe PLAGNIOL-VILLARD Date: Fri, 10 Mar 2017 15:41:16 +0100 Subject: [PATCH] fix: console: expose consoles in devfs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit on 64bit ssize_t is not an int but a long so use the protype for fops_write ssize_t common/console.c: In function ‘console_register’: common/console.c:373:22: warning: assignment from incompatible pointer type [-Wincompatible-pointer-types] newcdev->fops.write = fops_write; in commit b4f55fcf355a4d0ac456445a5f42f259f2812b57 By Bastian Stender Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD Signed-off-by: Sascha Hauer --- common/console.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/console.c b/common/console.c index 668c870ab..4127e7617 100644 --- a/common/console.c +++ b/common/console.c @@ -296,7 +296,7 @@ static int fops_flush(struct cdev *dev) return 0; } -static int fops_write(struct cdev* dev, const void* buf, size_t count, +static ssize_t fops_write(struct cdev* dev, const void* buf, size_t count, loff_t offset, ulong flags) { struct console_device *priv = dev->priv;