mirror of
https://github.com/torvalds/linux.git
synced 2026-06-21 13:43:24 +02:00
On a recent compile, I got this warning: CC [M] drivers/net/pcmcia/smc91c92_cs.o drivers/net/pcmcia/smc91c92_cs.c: In function ‘smc91c92_probe’: drivers/net/pcmcia/smc91c92_cs.c:812:12: warning: ‘j’ may be used uninitialized in this function However, "j" is only used in a branch which has the same condition as a previous branch, where j is set, e.g. int j; if (CONDITION) j = VALUE ... if (CONDITION) printk(j) Still, avoid this warning, as it is easy to circumvent. Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net> |
||
|---|---|---|
| .. | ||
| 3c574_cs.c | ||
| 3c589_cs.c | ||
| axnet_cs.c | ||
| com20020_cs.c | ||
| fmvj18x_cs.c | ||
| ibmtr_cs.c | ||
| Kconfig | ||
| Makefile | ||
| nmclan_cs.c | ||
| pcnet_cs.c | ||
| smc91c92_cs.c | ||
| xirc2ps_cs.c | ||