diff options
author | Peter Hurley <peter@hurleysoftware.com> | 2013-01-28 22:34:42 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-01-29 23:28:45 -0500 |
commit | 2257d1224fa93875d472c21195b7817b0d7bcc50 (patch) | |
tree | 9ebb78a67d90381a8ff164d1c1bd5fe2d13a1826 | |
parent | 84472c3b584db1fcd4cb8a434468696bbf8640d8 (diff) |
staging/fwserial: Remove reference to removed constant
FWSERIAL_TTY_START_MINOR was removed. The minor_start is allocated
by tty_alloc_driver().
Signed-off-by: Peter Hurley <peter@hurleysoftware.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/staging/fwserial/fwserial.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/fwserial/fwserial.h b/drivers/staging/fwserial/fwserial.h index c768aad146e6..33a3a53a47ff 100644 --- a/drivers/staging/fwserial/fwserial.h +++ b/drivers/staging/fwserial/fwserial.h | |||
@@ -194,7 +194,7 @@ struct buffered_rx { | |||
194 | * @port: underlying tty_port | 194 | * @port: underlying tty_port |
195 | * @device: tty device | 195 | * @device: tty device |
196 | * @index: index into port_table for this particular port | 196 | * @index: index into port_table for this particular port |
197 | * note: minor = index + FWSERIAL_TTY_START_MINOR | 197 | * note: minor = index + minor_start assigned by tty_alloc_driver() |
198 | * @serial: back pointer to the containing fw_serial | 198 | * @serial: back pointer to the containing fw_serial |
199 | * @rx_handler: bus address handler for unique addr region used by remotes | 199 | * @rx_handler: bus address handler for unique addr region used by remotes |
200 | * to communicate with this port. Every port uses | 200 | * to communicate with this port. Every port uses |