arch/sim: Don't need check isconsole in tty_setup and tty_shutdown

since serial framework never call these callbacks in case of console

Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
This commit is contained in:
Xiang Xiao 2022-12-17 03:29:18 +08:00 committed by Petro Karashchenko
parent 9cc608e4c4
commit 4b3ea5b052

View File

@ -255,16 +255,8 @@ static int tty_setup(struct uart_dev_s *dev)
{
struct tty_priv_s *priv = dev->priv;
if (!dev->isconsole && priv->fd < 0)
{
priv->fd = host_uart_open(priv->path);
if (priv->fd < 0)
{
return priv->fd;
}
}
return OK;
priv->fd = host_uart_open(priv->path);
return priv->fd;
}
/****************************************************************************
@ -280,13 +272,10 @@ static void tty_shutdown(struct uart_dev_s *dev)
{
struct tty_priv_s *priv = dev->priv;
if (!dev->isconsole && priv->fd >= 0)
{
/* close file Description and reset fd */
/* close file Description and reset fd */
host_uart_close(priv->fd);
priv->fd = -1;
}
host_uart_close(priv->fd);
priv->fd = -1;
}
/****************************************************************************