summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tty/tiny_tty.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tty/tiny_tty.c b/tty/tiny_tty.c
index 649143b..d1fa150 100644
--- a/tty/tiny_tty.c
+++ b/tty/tiny_tty.c
@@ -532,7 +532,7 @@ static int __init tiny_init(void)
tiny_tty_driver->major = TINY_TTY_MAJOR,
tiny_tty_driver->type = TTY_DRIVER_TYPE_SERIAL,
tiny_tty_driver->subtype = SERIAL_TYPE_NORMAL,
- tiny_tty_driver->flags = TTY_DRIVER_REAL_RAW | TTY_DRIVER_NO_DEVFS,
+ tiny_tty_driver->flags = TTY_DRIVER_REAL_RAW | TTY_DRIVER_DYNAMIC_DEV,
tiny_tty_driver->init_termios = tty_std_termios;
tiny_tty_driver->init_termios.c_cflag = B9600 | CS8 | CREAD | HUPCL | CLOCAL;
tty_set_operations(tiny_tty_driver, &serial_ops);