diff options
author | Jesper Juhl | 2007-08-21 09:10:50 +0200 |
---|---|---|
committer | David S. Miller | 2007-08-22 05:59:30 +0200 |
commit | 2c20d72aaadd41fdf0a3b6cb8514c2f7b7d263e4 (patch) | |
tree | a3ace87b1550dd709716b2f1269d84e78d320efb /net | |
parent | [IPV6]: Fix kernel panic while send SCTP data with IP fragments (diff) | |
download | kernel-qcow2-linux-2c20d72aaadd41fdf0a3b6cb8514c2f7b7d263e4.tar.gz kernel-qcow2-linux-2c20d72aaadd41fdf0a3b6cb8514c2f7b7d263e4.tar.xz kernel-qcow2-linux-2c20d72aaadd41fdf0a3b6cb8514c2f7b7d263e4.zip |
[IRDA]: Avoid a label defined but not used warning in irda_init()
Easily avoidable compiler warnings bug me.
Building irmod without CONFIG_SYSCTL currently results in :
net/irda/irmod.c:132: warning: label 'out_err_2' defined but not used
But that can easily be avoided by simply moving the label inside
the existing "#ifdef CONFIG_SYSCTL" one line above it.
This patch moves the label and buys us one less warning with no
ill effects.
Signed-off-by: Jesper Juhl <jesper.juhl@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/irda/irmod.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/irda/irmod.c b/net/irda/irmod.c index 1900937b3328..8ba703da2797 100644 --- a/net/irda/irmod.c +++ b/net/irda/irmod.c @@ -128,8 +128,8 @@ static int __init irda_init(void) out_err_3: #ifdef CONFIG_SYSCTL irda_sysctl_unregister(); -#endif out_err_2: +#endif #ifdef CONFIG_PROC_FS irda_proc_unregister(); #endif |