From mboxrd@z Thu Jan 1 00:00:00 1970 From: Travis Spencer Date: Thu, 19 May 2005 15:01:20 +0000 Subject: [KJ] [PATCH 2.6.12-rc3] Supress warning caused by label being Message-Id: <20050519150120.GF6484@ruby.cat.pdx.edu> MIME-Version: 1 Content-Type: multipart/mixed; boundary="===============2758789596324307==" List-Id: References: In-Reply-To: To: kernel-janitors@vger.kernel.org --===============2758789596324307== Content-Type: text/plain; charset=us-ascii Content-Disposition: inline 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 --- 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", --===============2758789596324307== Content-Type: text/plain; charset="iso-8859-1" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline _______________________________________________ Kernel-janitors mailing list Kernel-janitors@lists.osdl.org http://lists.osdl.org/mailman/listinfo/kernel-janitors --===============2758789596324307==--