Commit 8b3ca458 authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds

[PATCH] com90xx error message patch: check_region() gone

From: Greg Aumann <Greg_Aumann@sil.org>

This patch updates two error messages to reflect changes in the code.
parent 6835de14
...@@ -155,7 +155,7 @@ static void __init com90xx_probe(void) ...@@ -155,7 +155,7 @@ static void __init com90xx_probe(void)
ioaddr = *port; ioaddr = *port;
if (!request_region(*port, ARCNET_TOTAL_SIZE, "arcnet (90xx)")) { if (!request_region(*port, ARCNET_TOTAL_SIZE, "arcnet (90xx)")) {
BUGMSG2(D_INIT_REASONS, "(check_region)\n"); BUGMSG2(D_INIT_REASONS, "(request_region)\n");
BUGMSG2(D_INIT_REASONS, "S1: "); BUGMSG2(D_INIT_REASONS, "S1: ");
BUGLVL(D_INIT_REASONS) numprint = 0; BUGLVL(D_INIT_REASONS) numprint = 0;
*port-- = ports[--numports]; *port-- = ports[--numports];
...@@ -214,7 +214,7 @@ static void __init com90xx_probe(void) ...@@ -214,7 +214,7 @@ static void __init com90xx_probe(void)
BUGMSG2(D_INIT, "%lXh ", *p); BUGMSG2(D_INIT, "%lXh ", *p);
if (!request_mem_region(*p, BUFFER_SIZE, "arcnet (90xx)")) { if (!request_mem_region(*p, BUFFER_SIZE, "arcnet (90xx)")) {
BUGMSG2(D_INIT_REASONS, "(check_mem_region)\n"); BUGMSG2(D_INIT_REASONS, "(request_mem_region)\n");
BUGMSG2(D_INIT_REASONS, "Stage 3: "); BUGMSG2(D_INIT_REASONS, "Stage 3: ");
BUGLVL(D_INIT_REASONS) numprint = 0; BUGLVL(D_INIT_REASONS) numprint = 0;
*p-- = shmems[--numshmems]; *p-- = shmems[--numshmems];
......
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