From: Greg KH <greg@kroah.com>
To: linux-kernel@vger.kernel.org
Subject: Re: [PATCH] TTY changes for 2.5.69
Date: Wed, 7 May 2003 16:16:28 -0700 [thread overview]
Message-ID: <10523493883143@kroah.com> (raw)
In-Reply-To: <10523493881029@kroah.com>
ChangeSet 1.1116, 2003/05/07 15:51:59-07:00, greg@kroah.com
TTY: changes based on tty_register_device() paramater change.
arch/mips/au1000/common/serial.c | 8 ++++----
drivers/char/dz.c | 4 ++--
drivers/char/hvc_console.c | 2 +-
drivers/char/ip2main.c | 4 ++--
drivers/char/vt.c | 2 +-
drivers/serial/core.c | 2 +-
drivers/tc/zs.c | 4 ++--
drivers/usb/class/bluetty.c | 2 +-
drivers/usb/class/cdc-acm.c | 2 +-
9 files changed, 15 insertions(+), 15 deletions(-)
diff -Nru a/arch/mips/au1000/common/serial.c b/arch/mips/au1000/common/serial.c
--- a/arch/mips/au1000/common/serial.c Wed May 7 15:59:59 2003
+++ b/arch/mips/au1000/common/serial.c Wed May 7 15:59:59 2003
@@ -2681,8 +2681,8 @@
(state->flags & ASYNC_FOURPORT) ? " FourPort" : "",
state->port, state->irq,
uart_config[state->type].name);
- tty_register_device(&serial_driver, state->line);
- tty_register_device(&callout_driver, state->line);
+ tty_register_device(&serial_driver, state->line, NULL);
+ tty_register_device(&callout_driver, state->line, NULL);
}
return 0;
}
@@ -2769,8 +2769,8 @@
state->iomem_base ? "iomem" : "port",
state->iomem_base ? (unsigned long)state->iomem_base :
state->port, state->irq, uart_config[state->type].name);
- tty_register_device(&serial_driver, state->line);
- tty_register_device(&callout_driver, state->line);
+ tty_register_device(&serial_driver, state->line, NULL);
+ tty_register_device(&callout_driver, state->line, NULL);
return state->line + SERIAL_DEV_OFFSET;
}
diff -Nru a/drivers/char/dz.c b/drivers/char/dz.c
--- a/drivers/char/dz.c Wed May 7 15:59:59 2003
+++ b/drivers/char/dz.c Wed May 7 15:59:59 2003
@@ -1426,8 +1426,8 @@
printk("ttyS%02d at 0x%08x (irq = %d)\n", info->line,
info->port, SERIAL);
- tty_register_device(&serial_driver, info->line);
- tty_register_device(&callout_driver, info->line);
+ tty_register_device(&serial_driver, info->line, NULL);
+ tty_register_device(&callout_driver, info->line, NULL);
}
/* Reset the chip */
diff -Nru a/drivers/char/hvc_console.c b/drivers/char/hvc_console.c
--- a/drivers/char/hvc_console.c Wed May 7 15:59:59 2003
+++ b/drivers/char/hvc_console.c Wed May 7 15:59:59 2003
@@ -283,7 +283,7 @@
for (i = 0; i < hvc_driver.num; i++) {
hvc_struct[i].lock = SPIN_LOCK_UNLOCKED;
hvc_struct[i].index = i;
- tty_register_device(&hvc_driver, i);
+ tty_register_device(&hvc_driver, i, NULL);
}
if (tty_register_driver(&hvc_driver))
diff -Nru a/drivers/char/ip2main.c b/drivers/char/ip2main.c
--- a/drivers/char/ip2main.c Wed May 7 15:59:59 2003
+++ b/drivers/char/ip2main.c Wed May 7 15:59:59 2003
@@ -902,10 +902,10 @@
{
tty_register_device(&ip2_tty_driver,
j + ABS_BIGGEST_BOX *
- (box+i*ABS_MAX_BOXES));
+ (box+i*ABS_MAX_BOXES), NULL);
tty_register_device(&ip2_callout_driver,
j + ABS_BIGGEST_BOX *
- (box+i*ABS_MAX_BOXES));
+ (box+i*ABS_MAX_BOXES), NULL);
}
}
}
diff -Nru a/drivers/char/vt.c b/drivers/char/vt.c
--- a/drivers/char/vt.c Wed May 7 15:59:59 2003
+++ b/drivers/char/vt.c Wed May 7 15:59:59 2003
@@ -2666,7 +2666,7 @@
int i;
for (i = 0; i < console_driver.num; i++)
- tty_register_device (&console_driver, i);
+ tty_register_device (&console_driver, i, NULL);
}
/*
diff -Nru a/drivers/serial/core.c b/drivers/serial/core.c
--- a/drivers/serial/core.c Wed May 7 15:59:59 2003
+++ b/drivers/serial/core.c Wed May 7 15:59:59 2003
@@ -2242,7 +2242,7 @@
* Register the port whether it's detected or not. This allows
* setserial to be used to alter this ports parameters.
*/
- tty_register_device(drv->tty_driver, port->line);
+ tty_register_device(drv->tty_driver, port->line, NULL);
out:
up(&port_sem);
diff -Nru a/drivers/tc/zs.c b/drivers/tc/zs.c
--- a/drivers/tc/zs.c Wed May 7 15:59:59 2003
+++ b/drivers/tc/zs.c Wed May 7 15:59:59 2003
@@ -1971,8 +1971,8 @@
printk("ttyS%02d at 0x%08x (irq = %d)", info->line,
info->port, info->irq);
printk(" is a Z85C30 SCC\n");
- tty_register_device(&serial_driver, info->line);
- tty_register_device(&callout_driver, info->line);
+ tty_register_device(&serial_driver, info->line, NULL);
+ tty_register_device(&callout_driver, info->line, NULL);
}
diff -Nru a/drivers/usb/class/bluetty.c b/drivers/usb/class/bluetty.c
--- a/drivers/usb/class/bluetty.c Wed May 7 15:59:59 2003
+++ b/drivers/usb/class/bluetty.c Wed May 7 15:59:59 2003
@@ -1198,7 +1198,7 @@
bluetooth, endpoint->bInterval);
/* initialize the devfs nodes for this device and let the user know what bluetooths we are bound to */
- tty_register_device (&bluetooth_tty_driver, minor);
+ tty_register_device (&bluetooth_tty_driver, minor, &intf->dev);
info("Bluetooth converter now attached to ttyUB%d (or usb/ttub/%d for devfs)", minor, minor);
bluetooth_table[minor] = bluetooth;
diff -Nru a/drivers/usb/class/cdc-acm.c b/drivers/usb/class/cdc-acm.c
--- a/drivers/usb/class/cdc-acm.c Wed May 7 15:59:59 2003
+++ b/drivers/usb/class/cdc-acm.c Wed May 7 15:59:59 2003
@@ -653,7 +653,7 @@
usb_driver_claim_interface(&acm_driver, acm->iface + 0, acm);
usb_driver_claim_interface(&acm_driver, acm->iface + 1, acm);
- tty_register_device(&acm_tty_driver, minor);
+ tty_register_device(&acm_tty_driver, minor, &intf->dev);
acm_table[minor] = acm;
usb_set_intfdata (intf, acm);
next prev parent reply other threads:[~2003-05-07 23:02 UTC|newest]
Thread overview: 29+ messages / expand[flat|nested] mbox.gz Atom feed top
2003-05-07 23:15 [BK PATCH] TTY changes for 2.5.69 Greg KH
2003-05-07 23:16 ` [PATCH] " Greg KH
2003-05-07 23:16 ` Greg KH
2003-05-07 23:16 ` Greg KH
2003-05-07 23:16 ` Greg KH
2003-05-07 23:16 ` Greg KH
2003-05-07 23:16 ` Greg KH
2003-05-07 23:16 ` Greg KH
2003-05-07 23:16 ` Greg KH
2003-05-07 23:16 ` Greg KH
2003-05-07 23:16 ` Greg KH
2003-05-07 23:16 ` Greg KH
2003-05-07 23:16 ` Greg KH
2003-05-07 23:16 ` Greg KH
2003-05-07 23:16 ` Greg KH
2003-05-07 23:16 ` Greg KH
2003-05-07 23:16 ` Greg KH
2003-05-07 23:16 ` Greg KH
2003-05-07 23:16 ` Greg KH
2003-05-07 23:16 ` Greg KH
2003-05-07 23:16 ` Greg KH
2003-05-07 23:16 ` Greg KH
2003-05-07 23:16 ` Greg KH
2003-05-07 23:16 ` Greg KH
2003-05-07 23:16 ` Greg KH
2003-05-07 23:16 ` Greg KH
2003-05-07 23:16 ` Greg KH
2003-05-07 23:16 ` Greg KH [this message]
2003-05-07 23:16 ` Greg KH
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=10523493883143@kroah.com \
--to=greg@kroah.com \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox