Commit 219a40d0 authored by Daeseok Youn's avatar Daeseok Youn Committed by Greg Kroah-Hartman

staging: dgap: get rid of brd->firstminor because it is 0

firstminor in struct borad_t is always zero, so it
can be removed.
Signed-off-by: default avatarDaeseok Youn <daeseok.youn@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent c7873665
...@@ -684,7 +684,6 @@ static int dgap_found_board(struct pci_dev *pdev, int id, int boardnum) ...@@ -684,7 +684,6 @@ static int dgap_found_board(struct pci_dev *pdev, int id, int boardnum)
/* store the info for the board we've found */ /* store the info for the board we've found */
brd->magic = DGAP_BOARD_MAGIC; brd->magic = DGAP_BOARD_MAGIC;
brd->boardnum = boardnum; brd->boardnum = boardnum;
brd->firstminor = 0;
brd->vendor = dgap_pci_tbl[id].vendor; brd->vendor = dgap_pci_tbl[id].vendor;
brd->device = dgap_pci_tbl[id].device; brd->device = dgap_pci_tbl[id].device;
brd->pdev = pdev; brd->pdev = pdev;
...@@ -4168,8 +4167,8 @@ static int dgap_tty_register_ports(struct board_t *brd) ...@@ -4168,8 +4167,8 @@ static int dgap_tty_register_ports(struct board_t *brd)
struct device *classp; struct device *classp;
classp = tty_port_register_device(&brd->serial_ports[i], classp = tty_port_register_device(&brd->serial_ports[i],
brd->serial_driver, brd->serial_driver,
brd->firstminor + i, NULL); i, NULL);
if (IS_ERR(classp)) { if (IS_ERR(classp)) {
ret = PTR_ERR(classp); ret = PTR_ERR(classp);
...@@ -4180,8 +4179,8 @@ static int dgap_tty_register_ports(struct board_t *brd) ...@@ -4180,8 +4179,8 @@ static int dgap_tty_register_ports(struct board_t *brd)
ch->ch_tun.un_sysfs = classp; ch->ch_tun.un_sysfs = classp;
classp = tty_port_register_device(&brd->printer_ports[i], classp = tty_port_register_device(&brd->printer_ports[i],
brd->print_driver, brd->print_driver,
brd->firstminor + i, NULL); i, NULL);
if (IS_ERR(classp)) { if (IS_ERR(classp)) {
ret = PTR_ERR(classp); ret = PTR_ERR(classp);
......
...@@ -529,7 +529,6 @@ struct macounter { ...@@ -529,7 +529,6 @@ struct macounter {
struct board_t { struct board_t {
int magic; /* Board Magic number. */ int magic; /* Board Magic number. */
int boardnum; /* Board number: 0-3 */ int boardnum; /* Board number: 0-3 */
int firstminor; /* First minor, e.g. 0, 30, 60 */
int type; /* Type of board */ int type; /* Type of board */
char *name; /* Product Name */ char *name; /* Product Name */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment