mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-21 11:44:01 +08:00
caif: check write operations
write is optional for a tty device. Check that we have a write op rather than calling NULL. Signed-off-by: Alan Cox <alan@linux.intel.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
298b9e44be
commit
c93f094021
@ -312,6 +312,10 @@ static int ldisc_open(struct tty_struct *tty)
|
||||
char name[64];
|
||||
int result;
|
||||
|
||||
/* No write no play */
|
||||
if (tty->ops->write == NULL)
|
||||
return -EOPNOTSUPP;
|
||||
|
||||
sprintf(name, "cf%s", tty->name);
|
||||
dev = alloc_netdev(sizeof(*ser), name, caifdev_setup);
|
||||
ser = netdev_priv(dev);
|
||||
|
Loading…
Reference in New Issue
Block a user