From: Travis Spencer <tspencer@cs.pdx.edu>
To: kernel-janitors@vger.kernel.org
Subject: [KJ] [PATCH 2.6.12-rc3] Supress warning caused by label being
Date: Thu, 19 May 2005 15:01:20 +0000 [thread overview]
Message-ID: <20050519150120.GF6484@ruby.cat.pdx.edu> (raw)
In-Reply-To: <e3b7bac0505182256a031ea8@mail.gmail.com>
[-- Attachment #1: Type: text/plain, Size: 788 bytes --]
When the macro `__ISAPNP__' is undefined, the label `ready' is defined
but the only corresponding goto statement isn't . This results in a
warning from the compiler. To avoid this message, a `goto ready'
statement is added _just_ above the label. Thus, when `__ISAPNP__'
isn't defined, the newly added `goto ready' is a noop and the compiler
is quiet.
Signed-off-by: Travis L. Spencer <tspencer@cs.pdx.edu>
--- a/drivers/isdn/hisax/diva.c~ 2005-05-18 22:34:44.074178000 -0700
+++ b/drivers/isdn/hisax/diva.c 2005-05-18 22:33:26.745944000 -0700
@@ -1101,6 +1101,7 @@ setup_diva(struct IsdnCard *card)
bytecnt = 32;
}
}
+ goto ready; /* Assure that `ready' is used even if `__ISAPNP__' isn't. */
ready:
printk(KERN_INFO
"Diva: %s card configured at %#lx IRQ %d\n",
[-- Attachment #2: Type: text/plain, Size: 167 bytes --]
_______________________________________________
Kernel-janitors mailing list
Kernel-janitors@lists.osdl.org
http://lists.osdl.org/mailman/listinfo/kernel-janitors
prev parent reply other threads:[~2005-05-19 15:01 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-05-19 5:56 [KJ] [PATCH 2.6.12-rc3] Supress warning caused by label being Travis Spencer
2005-05-19 15:01 ` Travis Spencer [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20050519150120.GF6484@ruby.cat.pdx.edu \
--to=tspencer@cs.pdx.edu \
--cc=kernel-janitors@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.