diff options
Diffstat (limited to 'arch/um/drivers/line.c')
-rw-r--r-- | arch/um/drivers/line.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/um/drivers/line.c b/arch/um/drivers/line.c index bbaf2c59830a..457475f98414 100644 --- a/arch/um/drivers/line.c +++ b/arch/um/drivers/line.c | |||
@@ -409,7 +409,8 @@ int setup_one_line(struct line *lines, int n, char *init, | |||
409 | line->valid = 1; | 409 | line->valid = 1; |
410 | err = parse_chan_pair(new, line, n, opts, error_out); | 410 | err = parse_chan_pair(new, line, n, opts, error_out); |
411 | if (!err) { | 411 | if (!err) { |
412 | struct device *d = tty_register_device(driver, n, NULL); | 412 | struct device *d = tty_port_register_device(&line->port, |
413 | driver, n, NULL); | ||
413 | if (IS_ERR(d)) { | 414 | if (IS_ERR(d)) { |
414 | *error_out = "Failed to register device"; | 415 | *error_out = "Failed to register device"; |
415 | err = PTR_ERR(d); | 416 | err = PTR_ERR(d); |