9
0
Fork 0

fix: console: expose consoles in devfs

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 b4f55fcf35
By Bastian Stender <bst@pengutronix.de>

Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Jean-Christophe PLAGNIOL-VILLARD 2017-03-10 15:41:16 +01:00 committed by Sascha Hauer
parent 97d2da3d98
commit 27f3f993b8
1 changed files with 1 additions and 1 deletions

View File

@ -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;