diff options
author | Jiri Slaby <jslaby@suse.cz> | 2021-03-02 07:21:52 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2021-03-10 09:34:07 +0100 |
commit | d01a83590b7d8c647337fb641b5bf09a0a8b0da2 (patch) | |
tree | 38ab7ac1d5f082a2992fd6683f175e478ffc3ae1 /drivers/tty/nozomi.c | |
parent | tty: jsm_tty, make char+error handling readable (diff) | |
download | linux-d01a83590b7d8c647337fb641b5bf09a0a8b0da2.tar.xz linux-d01a83590b7d8c647337fb641b5bf09a0a8b0da2.zip |
tty: nozomi, remove struct buffer
It is unused.
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
Link: https://lore.kernel.org/r/20210302062214.29627-22-jslaby@suse.cz
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty/nozomi.c')
-rw-r--r-- | drivers/tty/nozomi.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/drivers/tty/nozomi.c b/drivers/tty/nozomi.c index 861e95043191..83490925a3e2 100644 --- a/drivers/tty/nozomi.c +++ b/drivers/tty/nozomi.c @@ -359,12 +359,6 @@ struct nozomi { u32 open_ttys; }; -/* This is a data packet that is read or written to/from card */ -struct buffer { - u32 size; /* size is the length of the data buffer */ - u8 *data; -} __attribute__ ((packed)); - /* Global variables */ static const struct pci_device_id nozomi_pci_tbl[] = { {PCI_DEVICE(0x1931, 0x000c)}, /* Nozomi HSDPA */ |