Commit 6c66843d authored by Daeseok Youn's avatar Daeseok Youn Committed by Greg Kroah-Hartman

staging: dgap: cleanup print messages for dgap driver

* use dev_{warn,err} instead of pr_{warn,err}
* removes dgap_err() and just use pr_err(). pr_err() used in
dgap_parsefile() not dev_err() because if dgap_parsefile() is
failed, just one message is printed.
* removes "out of memory" messages.
Signed-off-by: default avatarDaeseok Youn <daeseok.youn@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 3cfa648b
...@@ -41,6 +41,8 @@ ...@@ -41,6 +41,8 @@
*/ */
#undef DIGI_CONCENTRATORS_SUPPORTED #undef DIGI_CONCENTRATORS_SUPPORTED
#define pr_fmt(fmt) "dgap: " fmt
#include <linux/kernel.h> #include <linux/kernel.h>
#include <linux/module.h> #include <linux/module.h>
#include <linux/pci.h> #include <linux/pci.h>
...@@ -153,7 +155,6 @@ static void dgap_firmware_reset_port(struct channel_t *ch); ...@@ -153,7 +155,6 @@ static void dgap_firmware_reset_port(struct channel_t *ch);
static int dgap_gettok(char **in); static int dgap_gettok(char **in);
static char *dgap_getword(char **in); static char *dgap_getword(char **in);
static int dgap_checknode(struct cnode *p); static int dgap_checknode(struct cnode *p);
static void dgap_err(char *s);
/* /*
* Function prototypes from dgap_sysfs.h * Function prototypes from dgap_sysfs.h
...@@ -877,7 +878,7 @@ static int dgap_firmware_load(struct pci_dev *pdev, int card_type, ...@@ -877,7 +878,7 @@ static int dgap_firmware_load(struct pci_dev *pdev, int card_type,
ret = request_firmware(&fw, fw_info[card_type].conf_name, ret = request_firmware(&fw, fw_info[card_type].conf_name,
&pdev->dev); &pdev->dev);
if (ret) { if (ret) {
pr_err("dgap: config file %s not found\n", dev_err(&pdev->dev, "config file %s not found\n",
fw_info[card_type].conf_name); fw_info[card_type].conf_name);
return ret; return ret;
} }
...@@ -922,7 +923,7 @@ static int dgap_firmware_load(struct pci_dev *pdev, int card_type, ...@@ -922,7 +923,7 @@ static int dgap_firmware_load(struct pci_dev *pdev, int card_type,
dgap_find_config(PAPORT4, brd->pci_bus, brd->pci_slot); dgap_find_config(PAPORT4, brd->pci_bus, brd->pci_slot);
if (!brd->bd_config) { if (!brd->bd_config) {
pr_err("dgap: No valid configuration found\n"); dev_err(&pdev->dev, "No valid configuration found\n");
return -EINVAL; return -EINVAL;
} }
...@@ -930,7 +931,7 @@ static int dgap_firmware_load(struct pci_dev *pdev, int card_type, ...@@ -930,7 +931,7 @@ static int dgap_firmware_load(struct pci_dev *pdev, int card_type,
ret = request_firmware(&fw, fw_info[card_type].bios_name, ret = request_firmware(&fw, fw_info[card_type].bios_name,
&pdev->dev); &pdev->dev);
if (ret) { if (ret) {
pr_err("dgap: bios file %s not found\n", dev_err(&pdev->dev, "bios file %s not found\n",
fw_info[card_type].bios_name); fw_info[card_type].bios_name);
return ret; return ret;
} }
...@@ -947,7 +948,7 @@ static int dgap_firmware_load(struct pci_dev *pdev, int card_type, ...@@ -947,7 +948,7 @@ static int dgap_firmware_load(struct pci_dev *pdev, int card_type,
ret = request_firmware(&fw, fw_info[card_type].fep_name, ret = request_firmware(&fw, fw_info[card_type].fep_name,
&pdev->dev); &pdev->dev);
if (ret) { if (ret) {
pr_err("dgap: fep file %s not found\n", dev_err(&pdev->dev, "dgap: fep file %s not found\n",
fw_info[card_type].fep_name); fw_info[card_type].fep_name);
return ret; return ret;
} }
...@@ -976,7 +977,7 @@ static int dgap_firmware_load(struct pci_dev *pdev, int card_type, ...@@ -976,7 +977,7 @@ static int dgap_firmware_load(struct pci_dev *pdev, int card_type,
ret = request_firmware(&fw, fw_info[card_type].con_name, ret = request_firmware(&fw, fw_info[card_type].con_name,
&pdev->dev); &pdev->dev);
if (ret) { if (ret) {
pr_err("dgap: conc file %s not found\n", dev_err(&pdev->dev, "conc file %s not found\n",
fw_info[card_type].con_name); fw_info[card_type].con_name);
return ret; return ret;
} }
...@@ -1378,13 +1379,16 @@ static int dgap_tty_init(struct board_t *brd) ...@@ -1378,13 +1379,16 @@ static int dgap_tty_init(struct board_t *brd)
brd->nasync = brd->maxports; brd->nasync = brd->maxports;
if (true_count != brd->nasync) { if (true_count != brd->nasync) {
pr_warn("dgap: %s configured for %d ports, has %d ports.\n", dev_warn(&brd->pdev->dev,
"%s configured for %d ports, has %d ports.\n",
brd->name, brd->nasync, true_count); brd->name, brd->nasync, true_count);
if ((brd->type == PPCM) && if ((brd->type == PPCM) &&
(true_count == 64 || true_count == 0)) { (true_count == 64 || true_count == 0)) {
pr_warn("dgap: Please make SURE the EBI cable running from the card\n"); dev_warn(&brd->pdev->dev,
pr_warn("dgap: to each EM module is plugged into EBI IN!\n"); "Please make SURE the EBI cable running from the card\n");
dev_warn(&brd->pdev->dev,
"to each EM module is plugged into EBI IN!\n");
} }
brd->nasync = true_count; brd->nasync = true_count;
...@@ -4204,7 +4208,7 @@ static int dgap_test_bios(struct board_t *brd) ...@@ -4204,7 +4208,7 @@ static int dgap_test_bios(struct board_t *brd)
/* Gave up on board after too long of time taken */ /* Gave up on board after too long of time taken */
err1 = readw(addr + SEQUENCE); err1 = readw(addr + SEQUENCE);
err2 = readw(addr + ERROR); err2 = readw(addr + ERROR);
pr_warn("dgap: %s failed diagnostics. Error #(%x,%x).\n", dev_warn(&brd->pdev->dev, "%s failed diagnostics. Error #(%x,%x).\n",
brd->name, err1, err2); brd->name, err1, err2);
brd->state = BOARD_FAILED; brd->state = BOARD_FAILED;
brd->dpastatus = BD_NOBIOS; brd->dpastatus = BD_NOBIOS;
...@@ -4299,7 +4303,8 @@ static int dgap_test_fep(struct board_t *brd) ...@@ -4299,7 +4303,8 @@ static int dgap_test_fep(struct board_t *brd)
/* Gave up on board after too long of time taken */ /* Gave up on board after too long of time taken */
err1 = readw(addr + SEQUENCE); err1 = readw(addr + SEQUENCE);
err2 = readw(addr + ERROR); err2 = readw(addr + ERROR);
pr_warn("dgap: FEPOS for %s not functioning. Error #(%x,%x).\n", dev_warn(&brd->pdev->dev,
"FEPOS for %s not functioning. Error #(%x,%x).\n",
brd->name, err1, err2); brd->name, err1, err2);
brd->state = BOARD_FAILED; brd->state = BOARD_FAILED;
brd->dpastatus = BD_NOFEP; brd->dpastatus = BD_NOFEP;
...@@ -4332,7 +4337,8 @@ static void dgap_do_reset_board(struct board_t *brd) ...@@ -4332,7 +4337,8 @@ static void dgap_do_reset_board(struct board_t *brd)
} }
if (i > 1000) { if (i > 1000) {
pr_warn("dgap: Board not resetting... Failing board.\n"); dev_warn(&brd->pdev->dev,
"dgap: Board not resetting... Failing board.\n");
brd->state = BOARD_FAILED; brd->state = BOARD_FAILED;
brd->dpastatus = BD_NOFEP; brd->dpastatus = BD_NOFEP;
return; return;
...@@ -4347,7 +4353,8 @@ static void dgap_do_reset_board(struct board_t *brd) ...@@ -4347,7 +4353,8 @@ static void dgap_do_reset_board(struct board_t *brd)
check2 = readl(brd->re_map_membase + HIGHMEM); check2 = readl(brd->re_map_membase + HIGHMEM);
if ((check1 != 0xa55a3cc3) || (check2 != 0x5aa5c33c)) { if ((check1 != 0xa55a3cc3) || (check2 != 0x5aa5c33c)) {
pr_warn("dgap: No memory at %p for board.\n", dev_warn(&brd->pdev->dev,
"No memory at %p for board.\n",
brd->re_map_membase); brd->re_map_membase);
brd->state = BOARD_FAILED; brd->state = BOARD_FAILED;
brd->dpastatus = BD_NOFEP; brd->dpastatus = BD_NOFEP;
...@@ -6380,7 +6387,7 @@ static int dgap_parsefile(char **in) ...@@ -6380,7 +6387,7 @@ static int dgap_parsefile(char **in)
/* file must start with a BEGIN */ /* file must start with a BEGIN */
while ((rc = dgap_gettok(in)) != BEGIN) { while ((rc = dgap_gettok(in)) != BEGIN) {
if (rc == 0) { if (rc == 0) {
dgap_err("unexpected EOF"); pr_err("unexpected EOF");
return -1; return -1;
} }
} }
...@@ -6392,13 +6399,13 @@ static int dgap_parsefile(char **in) ...@@ -6392,13 +6399,13 @@ static int dgap_parsefile(char **in)
rc = dgap_gettok(in); rc = dgap_gettok(in);
if (rc == 0) { if (rc == 0) {
dgap_err("unexpected EOF"); pr_err("unexpected EOF");
return -1; return -1;
} }
switch (rc) { switch (rc) {
case BEGIN: /* should only be 1 begin */ case BEGIN: /* should only be 1 begin */
dgap_err("unexpected config_begin\n"); pr_err("unexpected config_begin\n");
return -1; return -1;
case END: case END:
...@@ -6409,10 +6416,9 @@ static int dgap_parsefile(char **in) ...@@ -6409,10 +6416,9 @@ static int dgap_parsefile(char **in)
return -1; return -1;
p->next = kzalloc(sizeof(struct cnode), GFP_KERNEL); p->next = kzalloc(sizeof(struct cnode), GFP_KERNEL);
if (!p->next) { if (!p->next)
dgap_err("out of memory");
return -1; return -1;
}
p = p->next; p = p->next;
p->type = BNODE; p->type = BNODE;
...@@ -6422,8 +6428,10 @@ static int dgap_parsefile(char **in) ...@@ -6422,8 +6428,10 @@ static int dgap_parsefile(char **in)
linecnt = -1; linecnt = -1;
board_type = dgap_gettok(in); board_type = dgap_gettok(in);
if (board_type == 0) if (board_type == 0) {
pr_err("board !!type not specified");
return -1; return -1;
}
p->u.board.type = board_type; p->u.board.type = board_type;
...@@ -6431,17 +6439,17 @@ static int dgap_parsefile(char **in) ...@@ -6431,17 +6439,17 @@ static int dgap_parsefile(char **in)
case IO: /* i/o port */ case IO: /* i/o port */
if (p->type != BNODE) { if (p->type != BNODE) {
dgap_err("IO port only vaild for boards"); pr_err("IO port only vaild for boards");
return -1; return -1;
} }
s = dgap_getword(in); s = dgap_getword(in);
if (!s) { if (!s) {
dgap_err("unexpected end of file"); pr_err("unexpected end of file");
return -1; return -1;
} }
p->u.board.portstr = kstrdup(s, GFP_KERNEL); p->u.board.portstr = kstrdup(s, GFP_KERNEL);
if (kstrtol(s, 0, &p->u.board.port)) { if (kstrtol(s, 0, &p->u.board.port)) {
dgap_err("bad number for IO port"); pr_err("bad number for IO port");
return -1; return -1;
} }
p->u.board.v_port = 1; p->u.board.v_port = 1;
...@@ -6449,17 +6457,17 @@ static int dgap_parsefile(char **in) ...@@ -6449,17 +6457,17 @@ static int dgap_parsefile(char **in)
case MEM: /* memory address */ case MEM: /* memory address */
if (p->type != BNODE) { if (p->type != BNODE) {
dgap_err("memory address only vaild for boards"); pr_err("memory address only vaild for boards");
return -1; return -1;
} }
s = dgap_getword(in); s = dgap_getword(in);
if (!s) { if (!s) {
dgap_err("unexpected end of file"); pr_err("unexpected end of file");
return -1; return -1;
} }
p->u.board.addrstr = kstrdup(s, GFP_KERNEL); p->u.board.addrstr = kstrdup(s, GFP_KERNEL);
if (kstrtoul(s, 0, &p->u.board.addr)) { if (kstrtoul(s, 0, &p->u.board.addr)) {
dgap_err("bad number for memory address"); pr_err("bad number for memory address");
return -1; return -1;
} }
p->u.board.v_addr = 1; p->u.board.v_addr = 1;
...@@ -6467,28 +6475,28 @@ static int dgap_parsefile(char **in) ...@@ -6467,28 +6475,28 @@ static int dgap_parsefile(char **in)
case PCIINFO: /* pci information */ case PCIINFO: /* pci information */
if (p->type != BNODE) { if (p->type != BNODE) {
dgap_err("memory address only vaild for boards"); pr_err("memory address only vaild for boards");
return -1; return -1;
} }
s = dgap_getword(in); s = dgap_getword(in);
if (!s) { if (!s) {
dgap_err("unexpected end of file"); pr_err("unexpected end of file");
return -1; return -1;
} }
p->u.board.pcibusstr = kstrdup(s, GFP_KERNEL); p->u.board.pcibusstr = kstrdup(s, GFP_KERNEL);
if (kstrtoul(s, 0, &p->u.board.pcibus)) { if (kstrtoul(s, 0, &p->u.board.pcibus)) {
dgap_err("bad number for pci bus"); pr_err("bad number for pci bus");
return -1; return -1;
} }
p->u.board.v_pcibus = 1; p->u.board.v_pcibus = 1;
s = dgap_getword(in); s = dgap_getword(in);
if (!s) { if (!s) {
dgap_err("unexpected end of file"); pr_err("unexpected end of file");
return -1; return -1;
} }
p->u.board.pcislotstr = kstrdup(s, GFP_KERNEL); p->u.board.pcislotstr = kstrdup(s, GFP_KERNEL);
if (kstrtoul(s, 0, &p->u.board.pcislot)) { if (kstrtoul(s, 0, &p->u.board.pcislot)) {
dgap_err("bad number for pci slot"); pr_err("bad number for pci slot");
return -1; return -1;
} }
p->u.board.v_pcislot = 1; p->u.board.v_pcislot = 1;
...@@ -6496,12 +6504,12 @@ static int dgap_parsefile(char **in) ...@@ -6496,12 +6504,12 @@ static int dgap_parsefile(char **in)
case METHOD: case METHOD:
if (p->type != BNODE) { if (p->type != BNODE) {
dgap_err("install method only vaild for boards"); pr_err("install method only vaild for boards");
return -1; return -1;
} }
s = dgap_getword(in); s = dgap_getword(in);
if (!s) { if (!s) {
dgap_err("unexpected end of file"); pr_err("unexpected end of file");
return -1; return -1;
} }
p->u.board.method = kstrdup(s, GFP_KERNEL); p->u.board.method = kstrdup(s, GFP_KERNEL);
...@@ -6510,12 +6518,12 @@ static int dgap_parsefile(char **in) ...@@ -6510,12 +6518,12 @@ static int dgap_parsefile(char **in)
case STATUS: case STATUS:
if (p->type != BNODE) { if (p->type != BNODE) {
dgap_err("config status only vaild for boards"); pr_err("config status only vaild for boards");
return -1; return -1;
} }
s = dgap_getword(in); s = dgap_getword(in);
if (!s) { if (!s) {
dgap_err("unexpected end of file"); pr_err("unexpected end of file");
return -1; return -1;
} }
p->u.board.status = kstrdup(s, GFP_KERNEL); p->u.board.status = kstrdup(s, GFP_KERNEL);
...@@ -6525,38 +6533,38 @@ static int dgap_parsefile(char **in) ...@@ -6525,38 +6533,38 @@ static int dgap_parsefile(char **in)
if (p->type == BNODE) { if (p->type == BNODE) {
s = dgap_getword(in); s = dgap_getword(in);
if (!s) { if (!s) {
dgap_err("unexpected end of file"); pr_err("unexpected end of file");
return -1; return -1;
} }
if (kstrtol(s, 0, &p->u.board.nport)) { if (kstrtol(s, 0, &p->u.board.nport)) {
dgap_err("bad number for number of ports"); pr_err("bad number for number of ports");
return -1; return -1;
} }
p->u.board.v_nport = 1; p->u.board.v_nport = 1;
} else if (p->type == CNODE) { } else if (p->type == CNODE) {
s = dgap_getword(in); s = dgap_getword(in);
if (!s) { if (!s) {
dgap_err("unexpected end of file"); pr_err("unexpected end of file");
return -1; return -1;
} }
if (kstrtol(s, 0, &p->u.conc.nport)) { if (kstrtol(s, 0, &p->u.conc.nport)) {
dgap_err("bad number for number of ports"); pr_err("bad number for number of ports");
return -1; return -1;
} }
p->u.conc.v_nport = 1; p->u.conc.v_nport = 1;
} else if (p->type == MNODE) { } else if (p->type == MNODE) {
s = dgap_getword(in); s = dgap_getword(in);
if (!s) { if (!s) {
dgap_err("unexpected end of file"); pr_err("unexpected end of file");
return -1; return -1;
} }
if (kstrtol(s, 0, &p->u.module.nport)) { if (kstrtol(s, 0, &p->u.module.nport)) {
dgap_err("bad number for number of ports"); pr_err("bad number for number of ports");
return -1; return -1;
} }
p->u.module.v_nport = 1; p->u.module.v_nport = 1;
} else { } else {
dgap_err("nports only valid for concentrators or modules"); pr_err("nports only valid for concentrators or modules");
return -1; return -1;
} }
break; break;
...@@ -6564,7 +6572,7 @@ static int dgap_parsefile(char **in) ...@@ -6564,7 +6572,7 @@ static int dgap_parsefile(char **in)
case ID: /* letter ID used in tty name */ case ID: /* letter ID used in tty name */
s = dgap_getword(in); s = dgap_getword(in);
if (!s) { if (!s) {
dgap_err("unexpected end of file"); pr_err("unexpected end of file");
return -1; return -1;
} }
...@@ -6577,7 +6585,7 @@ static int dgap_parsefile(char **in) ...@@ -6577,7 +6585,7 @@ static int dgap_parsefile(char **in)
p->u.module.id = kstrdup(s, GFP_KERNEL); p->u.module.id = kstrdup(s, GFP_KERNEL);
p->u.module.v_id = 1; p->u.module.v_id = 1;
} else { } else {
dgap_err("id only valid for concentrators or modules"); pr_err("id only valid for concentrators or modules");
return -1; return -1;
} }
break; break;
...@@ -6586,38 +6594,38 @@ static int dgap_parsefile(char **in) ...@@ -6586,38 +6594,38 @@ static int dgap_parsefile(char **in)
if (p->type == BNODE) { if (p->type == BNODE) {
s = dgap_getword(in); s = dgap_getword(in);
if (!s) { if (!s) {
dgap_err("unexpected end of file"); pr_err("unexpected end of file");
return -1; return -1;
} }
if (kstrtol(s, 0, &p->u.board.start)) { if (kstrtol(s, 0, &p->u.board.start)) {
dgap_err("bad number for start of tty count"); pr_err("bad number for start of tty count");
return -1; return -1;
} }
p->u.board.v_start = 1; p->u.board.v_start = 1;
} else if (p->type == CNODE) { } else if (p->type == CNODE) {
s = dgap_getword(in); s = dgap_getword(in);
if (!s) { if (!s) {
dgap_err("unexpected end of file"); pr_err("unexpected end of file");
return -1; return -1;
} }
if (kstrtol(s, 0, &p->u.conc.start)) { if (kstrtol(s, 0, &p->u.conc.start)) {
dgap_err("bad number for start of tty count"); pr_err("bad number for start of tty count");
return -1; return -1;
} }
p->u.conc.v_start = 1; p->u.conc.v_start = 1;
} else if (p->type == MNODE) { } else if (p->type == MNODE) {
s = dgap_getword(in); s = dgap_getword(in);
if (!s) { if (!s) {
dgap_err("unexpected end of file"); pr_err("unexpected end of file");
return -1; return -1;
} }
if (kstrtol(s, 0, &p->u.module.start)) { if (kstrtol(s, 0, &p->u.module.start)) {
dgap_err("bad number for start of tty count"); pr_err("bad number for start of tty count");
return -1; return -1;
} }
p->u.module.v_start = 1; p->u.module.v_start = 1;
} else { } else {
dgap_err("start only valid for concentrators or modules"); pr_err("start only valid for concentrators or modules");
return -1; return -1;
} }
break; break;
...@@ -6627,24 +6635,21 @@ static int dgap_parsefile(char **in) ...@@ -6627,24 +6635,21 @@ static int dgap_parsefile(char **in)
return -1; return -1;
p->next = kzalloc(sizeof(struct cnode), GFP_KERNEL); p->next = kzalloc(sizeof(struct cnode), GFP_KERNEL);
if (!p->next) { if (!p->next)
dgap_err("out of memory");
return -1; return -1;
}
p = p->next; p = p->next;
p->type = TNODE; p->type = TNODE;
s = dgap_getword(in); s = dgap_getword(in);
if (!s) { if (!s) {
dgap_err("unexpeced end of file"); pr_err("unexpeced end of file");
return -1; return -1;
} }
p->u.ttyname = kstrdup(s, GFP_KERNEL); p->u.ttyname = kstrdup(s, GFP_KERNEL);
if (!p->u.ttyname) { if (!p->u.ttyname)
dgap_err("out of memory");
return -1; return -1;
}
break; break;
case CU: /* cu name prefix */ case CU: /* cu name prefix */
...@@ -6652,44 +6657,39 @@ static int dgap_parsefile(char **in) ...@@ -6652,44 +6657,39 @@ static int dgap_parsefile(char **in)
return -1; return -1;
p->next = kzalloc(sizeof(struct cnode), GFP_KERNEL); p->next = kzalloc(sizeof(struct cnode), GFP_KERNEL);
if (!p->next) { if (!p->next)
dgap_err("out of memory");
return -1; return -1;
}
p = p->next; p = p->next;
p->type = CUNODE; p->type = CUNODE;
s = dgap_getword(in); s = dgap_getword(in);
if (!s) { if (!s) {
dgap_err("unexpeced end of file"); pr_err("unexpeced end of file");
return -1; return -1;
} }
p->u.cuname = kstrdup(s, GFP_KERNEL); p->u.cuname = kstrdup(s, GFP_KERNEL);
if (!p->u.cuname) { if (!p->u.cuname)
dgap_err("out of memory");
return -1; return -1;
}
break; break;
case LINE: /* line information */ case LINE: /* line information */
if (dgap_checknode(p)) if (dgap_checknode(p))
return -1; return -1;
if (!brd) { if (!brd) {
dgap_err("must specify board before line info"); pr_err("must specify board before line info");
return -1; return -1;
} }
switch (brd->u.board.type) { switch (brd->u.board.type) {
case PPCM: case PPCM:
dgap_err("line not vaild for PC/em"); pr_err("line not vaild for PC/em");
return -1; return -1;
} }
p->next = kzalloc(sizeof(struct cnode), GFP_KERNEL); p->next = kzalloc(sizeof(struct cnode), GFP_KERNEL);
if (!p->next) { if (!p->next)
dgap_err("out of memory");
return -1; return -1;
}
p = p->next; p = p->next;
p->type = LNODE; p->type = LNODE;
...@@ -6702,15 +6702,13 @@ static int dgap_parsefile(char **in) ...@@ -6702,15 +6702,13 @@ static int dgap_parsefile(char **in)
if (dgap_checknode(p)) if (dgap_checknode(p))
return -1; return -1;
if (!line) { if (!line) {
dgap_err("must specify line info before concentrator"); pr_err("must specify line info before concentrator");
return -1; return -1;
} }
p->next = kzalloc(sizeof(struct cnode), GFP_KERNEL); p->next = kzalloc(sizeof(struct cnode), GFP_KERNEL);
if (!p->next) { if (!p->next)
dgap_err("out of memory");
return -1; return -1;
}
p = p->next; p = p->next;
p->type = CNODE; p->type = CNODE;
...@@ -6724,7 +6722,7 @@ static int dgap_parsefile(char **in) ...@@ -6724,7 +6722,7 @@ static int dgap_parsefile(char **in)
conc_type = dgap_gettok(in); conc_type = dgap_gettok(in);
if (conc_type == 0 || conc_type != CX || if (conc_type == 0 || conc_type != CX ||
conc_type != EPC) { conc_type != EPC) {
dgap_err("failed to set a type of concentratros"); pr_err("failed to set a type of concentratros");
return -1; return -1;
} }
...@@ -6736,7 +6734,7 @@ static int dgap_parsefile(char **in) ...@@ -6736,7 +6734,7 @@ static int dgap_parsefile(char **in)
if (dgap_checknode(p)) if (dgap_checknode(p))
return -1; return -1;
if (!brd) { if (!brd) {
dgap_err("must specify board info before EBI modules"); pr_err("must specify board info before EBI modules");
return -1; return -1;
} }
switch (brd->u.board.type) { switch (brd->u.board.type) {
...@@ -6745,16 +6743,15 @@ static int dgap_parsefile(char **in) ...@@ -6745,16 +6743,15 @@ static int dgap_parsefile(char **in)
break; break;
default: default:
if (!conc) { if (!conc) {
dgap_err("must specify concentrator info before EBI module"); pr_err("must specify concentrator info before EBI module");
return -1; return -1;
} }
} }
p->next = kzalloc(sizeof(struct cnode), GFP_KERNEL); p->next = kzalloc(sizeof(struct cnode), GFP_KERNEL);
if (!p->next) { if (!p->next)
dgap_err("out of memory");
return -1; return -1;
}
p = p->next; p = p->next;
p->type = MNODE; p->type = MNODE;
...@@ -6766,7 +6763,7 @@ static int dgap_parsefile(char **in) ...@@ -6766,7 +6763,7 @@ static int dgap_parsefile(char **in)
module_type = dgap_gettok(in); module_type = dgap_gettok(in);
if (module_type == 0 || module_type != PORTS || if (module_type == 0 || module_type != PORTS ||
module_type != MODEM) { module_type != MODEM) {
dgap_err("failed to set a type of module"); pr_err("failed to set a type of module");
return -1; return -1;
} }
...@@ -6778,7 +6775,7 @@ static int dgap_parsefile(char **in) ...@@ -6778,7 +6775,7 @@ static int dgap_parsefile(char **in)
if (p->type == LNODE) { if (p->type == LNODE) {
s = dgap_getword(in); s = dgap_getword(in);
if (!s) { if (!s) {
dgap_err("unexpected end of file"); pr_err("unexpected end of file");
return -1; return -1;
} }
p->u.line.cable = kstrdup(s, GFP_KERNEL); p->u.line.cable = kstrdup(s, GFP_KERNEL);
...@@ -6790,27 +6787,27 @@ static int dgap_parsefile(char **in) ...@@ -6790,27 +6787,27 @@ static int dgap_parsefile(char **in)
if (p->type == LNODE) { if (p->type == LNODE) {
s = dgap_getword(in); s = dgap_getword(in);
if (!s) { if (!s) {
dgap_err("unexpected end of file"); pr_err("unexpected end of file");
return -1; return -1;
} }
if (kstrtol(s, 0, &p->u.line.speed)) { if (kstrtol(s, 0, &p->u.line.speed)) {
dgap_err("bad number for line speed"); pr_err("bad number for line speed");
return -1; return -1;
} }
p->u.line.v_speed = 1; p->u.line.v_speed = 1;
} else if (p->type == CNODE) { } else if (p->type == CNODE) {
s = dgap_getword(in); s = dgap_getword(in);
if (!s) { if (!s) {
dgap_err("unexpected end of file"); pr_err("unexpected end of file");
return -1; return -1;
} }
if (kstrtol(s, 0, &p->u.conc.speed)) { if (kstrtol(s, 0, &p->u.conc.speed)) {
dgap_err("bad number for line speed"); pr_err("bad number for line speed");
return -1; return -1;
} }
p->u.conc.v_speed = 1; p->u.conc.v_speed = 1;
} else { } else {
dgap_err("speed valid only for lines or concentrators."); pr_err("speed valid only for lines or concentrators.");
return -1; return -1;
} }
break; break;
...@@ -6819,7 +6816,7 @@ static int dgap_parsefile(char **in) ...@@ -6819,7 +6816,7 @@ static int dgap_parsefile(char **in)
if (p->type == CNODE) { if (p->type == CNODE) {
s = dgap_getword(in); s = dgap_getword(in);
if (!s) { if (!s) {
dgap_err("unexpected end of file"); pr_err("unexpected end of file");
return -1; return -1;
} }
p->u.conc.connect = kstrdup(s, GFP_KERNEL); p->u.conc.connect = kstrdup(s, GFP_KERNEL);
...@@ -6831,24 +6828,21 @@ static int dgap_parsefile(char **in) ...@@ -6831,24 +6828,21 @@ static int dgap_parsefile(char **in)
return -1; return -1;
p->next = kzalloc(sizeof(struct cnode), GFP_KERNEL); p->next = kzalloc(sizeof(struct cnode), GFP_KERNEL);
if (!p->next) { if (!p->next)
dgap_err("out of memory");
return -1; return -1;
}
p = p->next; p = p->next;
p->type = PNODE; p->type = PNODE;
s = dgap_getword(in); s = dgap_getword(in);
if (!s) { if (!s) {
dgap_err("unexpeced end of file"); pr_err("unexpeced end of file");
return -1; return -1;
} }
p->u.printname = kstrdup(s, GFP_KERNEL); p->u.printname = kstrdup(s, GFP_KERNEL);
if (!p->u.printname) { if (!p->u.printname)
dgap_err("out of memory");
return -1; return -1;
}
break; break;
case CMAJOR: /* major number */ case CMAJOR: /* major number */
...@@ -6856,21 +6850,19 @@ static int dgap_parsefile(char **in) ...@@ -6856,21 +6850,19 @@ static int dgap_parsefile(char **in)
return -1; return -1;
p->next = kzalloc(sizeof(struct cnode), GFP_KERNEL); p->next = kzalloc(sizeof(struct cnode), GFP_KERNEL);
if (!p->next) { if (!p->next)
dgap_err("out of memory");
return -1; return -1;
}
p = p->next; p = p->next;
p->type = JNODE; p->type = JNODE;
s = dgap_getword(in); s = dgap_getword(in);
if (!s) { if (!s) {
dgap_err("unexpected end of file"); pr_err("unexpected end of file");
return -1; return -1;
} }
if (kstrtol(s, 0, &p->u.majornumber)) { if (kstrtol(s, 0, &p->u.majornumber)) {
dgap_err("bad number for major number"); pr_err("bad number for major number");
return -1; return -1;
} }
break; break;
...@@ -6880,21 +6872,19 @@ static int dgap_parsefile(char **in) ...@@ -6880,21 +6872,19 @@ static int dgap_parsefile(char **in)
return -1; return -1;
p->next = kzalloc(sizeof(struct cnode), GFP_KERNEL); p->next = kzalloc(sizeof(struct cnode), GFP_KERNEL);
if (!p->next) { if (!p->next)
dgap_err("out of memory");
return -1; return -1;
}
p = p->next; p = p->next;
p->type = ANODE; p->type = ANODE;
s = dgap_getword(in); s = dgap_getword(in);
if (!s) { if (!s) {
dgap_err("unexpected end of file"); pr_err("unexpected end of file");
return -1; return -1;
} }
if (kstrtol(s, 0, &p->u.altpin)) { if (kstrtol(s, 0, &p->u.altpin)) {
dgap_err("bad number for altpin"); pr_err("bad number for altpin");
return -1; return -1;
} }
break; break;
...@@ -6904,19 +6894,18 @@ static int dgap_parsefile(char **in) ...@@ -6904,19 +6894,18 @@ static int dgap_parsefile(char **in)
return -1; return -1;
p->next = kzalloc(sizeof(struct cnode), GFP_KERNEL); p->next = kzalloc(sizeof(struct cnode), GFP_KERNEL);
if (!p->next) { if (!p->next)
dgap_err("out of memory");
return -1; return -1;
}
p = p->next; p = p->next;
p->type = INTRNODE; p->type = INTRNODE;
s = dgap_getword(in); s = dgap_getword(in);
if (!s) { if (!s) {
dgap_err("unexpected end of file"); pr_err("unexpected end of file");
return -1; return -1;
} }
if (kstrtol(s, 0, &p->u.useintr)) { if (kstrtol(s, 0, &p->u.useintr)) {
dgap_err("bad number for useintr"); pr_err("bad number for useintr");
return -1; return -1;
} }
break; break;
...@@ -6926,21 +6915,19 @@ static int dgap_parsefile(char **in) ...@@ -6926,21 +6915,19 @@ static int dgap_parsefile(char **in)
return -1; return -1;
p->next = kzalloc(sizeof(struct cnode), GFP_KERNEL); p->next = kzalloc(sizeof(struct cnode), GFP_KERNEL);
if (!p->next) { if (!p->next)
dgap_err("out of memory");
return -1; return -1;
}
p = p->next; p = p->next;
p->type = TSNODE; p->type = TSNODE;
s = dgap_getword(in); s = dgap_getword(in);
if (!s) { if (!s) {
dgap_err("unexpected end of file"); pr_err("unexpected end of file");
return -1; return -1;
} }
if (kstrtol(s, 0, &p->u.ttysize)) { if (kstrtol(s, 0, &p->u.ttysize)) {
dgap_err("bad number for ttysize"); pr_err("bad number for ttysize");
return -1; return -1;
} }
break; break;
...@@ -6950,21 +6937,19 @@ static int dgap_parsefile(char **in) ...@@ -6950,21 +6937,19 @@ static int dgap_parsefile(char **in)
return -1; return -1;
p->next = kzalloc(sizeof(struct cnode), GFP_KERNEL); p->next = kzalloc(sizeof(struct cnode), GFP_KERNEL);
if (!p->next) { if (!p->next)
dgap_err("out of memory");
return -1; return -1;
}
p = p->next; p = p->next;
p->type = CSNODE; p->type = CSNODE;
s = dgap_getword(in); s = dgap_getword(in);
if (!s) { if (!s) {
dgap_err("unexpected end of file"); pr_err("unexpected end of file");
return -1; return -1;
} }
if (kstrtol(s, 0, &p->u.chsize)) { if (kstrtol(s, 0, &p->u.chsize)) {
dgap_err("bad number for chsize"); pr_err("bad number for chsize");
return -1; return -1;
} }
break; break;
...@@ -6974,21 +6959,19 @@ static int dgap_parsefile(char **in) ...@@ -6974,21 +6959,19 @@ static int dgap_parsefile(char **in)
return -1; return -1;
p->next = kzalloc(sizeof(struct cnode), GFP_KERNEL); p->next = kzalloc(sizeof(struct cnode), GFP_KERNEL);
if (!p->next) { if (!p->next)
dgap_err("out of memory");
return -1; return -1;
}
p = p->next; p = p->next;
p->type = BSNODE; p->type = BSNODE;
s = dgap_getword(in); s = dgap_getword(in);
if (!s) { if (!s) {
dgap_err("unexpected end of file"); pr_err("unexpected end of file");
return -1; return -1;
} }
if (kstrtol(s, 0, &p->u.bssize)) { if (kstrtol(s, 0, &p->u.bssize)) {
dgap_err("bad number for bssize"); pr_err("bad number for bssize");
return -1; return -1;
} }
break; break;
...@@ -6998,21 +6981,19 @@ static int dgap_parsefile(char **in) ...@@ -6998,21 +6981,19 @@ static int dgap_parsefile(char **in)
return -1; return -1;
p->next = kzalloc(sizeof(struct cnode), GFP_KERNEL); p->next = kzalloc(sizeof(struct cnode), GFP_KERNEL);
if (!p->next) { if (!p->next)
dgap_err("out of memory");
return -1; return -1;
}
p = p->next; p = p->next;
p->type = USNODE; p->type = USNODE;
s = dgap_getword(in); s = dgap_getword(in);
if (!s) { if (!s) {
dgap_err("unexpected end of file"); pr_err("unexpected end of file");
return -1; return -1;
} }
if (kstrtol(s, 0, &p->u.unsize)) { if (kstrtol(s, 0, &p->u.unsize)) {
dgap_err("bad number for schedsize"); pr_err("bad number for schedsize");
return -1; return -1;
} }
break; break;
...@@ -7022,21 +7003,19 @@ static int dgap_parsefile(char **in) ...@@ -7022,21 +7003,19 @@ static int dgap_parsefile(char **in)
return -1; return -1;
p->next = kzalloc(sizeof(struct cnode), GFP_KERNEL); p->next = kzalloc(sizeof(struct cnode), GFP_KERNEL);
if (!p->next) { if (!p->next)
dgap_err("out of memory");
return -1; return -1;
}
p = p->next; p = p->next;
p->type = FSNODE; p->type = FSNODE;
s = dgap_getword(in); s = dgap_getword(in);
if (!s) { if (!s) {
dgap_err("unexpected end of file"); pr_err("unexpected end of file");
return -1; return -1;
} }
if (kstrtol(s, 0, &p->u.f2size)) { if (kstrtol(s, 0, &p->u.f2size)) {
dgap_err("bad number for f2200size"); pr_err("bad number for f2200size");
return -1; return -1;
} }
break; break;
...@@ -7046,21 +7025,19 @@ static int dgap_parsefile(char **in) ...@@ -7046,21 +7025,19 @@ static int dgap_parsefile(char **in)
return -1; return -1;
p->next = kzalloc(sizeof(struct cnode), GFP_KERNEL); p->next = kzalloc(sizeof(struct cnode), GFP_KERNEL);
if (!p->next) { if (!p->next)
dgap_err("out of memory");
return -1; return -1;
}
p = p->next; p = p->next;
p->type = VSNODE; p->type = VSNODE;
s = dgap_getword(in); s = dgap_getword(in);
if (!s) { if (!s) {
dgap_err("unexpected end of file"); pr_err("unexpected end of file");
return -1; return -1;
} }
if (kstrtol(s, 0, &p->u.vpixsize)) { if (kstrtol(s, 0, &p->u.vpixsize)) {
dgap_err("bad number for vpixsize"); pr_err("bad number for vpixsize");
return -1; return -1;
} }
break; break;
...@@ -7117,7 +7094,6 @@ static int dgap_gettok(char **in) ...@@ -7117,7 +7094,6 @@ static int dgap_gettok(char **in)
if (!strcmp(w, t->string)) if (!strcmp(w, t->string))
return t->token; return t->token;
} }
dgap_err("board !!type not specified");
} else { } else {
while ((w = dgap_getword(in))) { while ((w = dgap_getword(in))) {
snprintf(dgap_cword, MAXCWORD, "%s", w); snprintf(dgap_cword, MAXCWORD, "%s", w);
...@@ -7160,15 +7136,6 @@ static char *dgap_getword(char **in) ...@@ -7160,15 +7136,6 @@ static char *dgap_getword(char **in)
return ret_ptr; return ret_ptr;
} }
/*
* print an error message, giving the line number in the file where
* the error occurred.
*/
static void dgap_err(char *s)
{
pr_err("dgap: parse: %s\n", s);
}
/* /*
* dgap_checknode: see if all the necessary info has been supplied for a node * dgap_checknode: see if all the necessary info has been supplied for a node
* before creating the next node. * before creating the next node.
...@@ -7178,33 +7145,33 @@ static int dgap_checknode(struct cnode *p) ...@@ -7178,33 +7145,33 @@ static int dgap_checknode(struct cnode *p)
switch (p->type) { switch (p->type) {
case LNODE: case LNODE:
if (p->u.line.v_speed == 0) { if (p->u.line.v_speed == 0) {
dgap_err("line speed not specified"); pr_err("line speed not specified");
return 1; return 1;
} }
return 0; return 0;
case CNODE: case CNODE:
if (p->u.conc.v_speed == 0) { if (p->u.conc.v_speed == 0) {
dgap_err("concentrator line speed not specified"); pr_err("concentrator line speed not specified");
return 1; return 1;
} }
if (p->u.conc.v_nport == 0) { if (p->u.conc.v_nport == 0) {
dgap_err("number of ports on concentrator not specified"); pr_err("number of ports on concentrator not specified");
return 1; return 1;
} }
if (p->u.conc.v_id == 0) { if (p->u.conc.v_id == 0) {
dgap_err("concentrator id letter not specified"); pr_err("concentrator id letter not specified");
return 1; return 1;
} }
return 0; return 0;
case MNODE: case MNODE:
if (p->u.module.v_nport == 0) { if (p->u.module.v_nport == 0) {
dgap_err("number of ports on EBI module not specified"); pr_err("number of ports on EBI module not specified");
return 1; return 1;
} }
if (p->u.module.v_id == 0) { if (p->u.module.v_id == 0) {
dgap_err("EBI module id letter not specified"); pr_err("EBI module id letter not specified");
return 1; return 1;
} }
return 0; return 0;
......
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