diff options
author | Lee Jones <lee.jones@linaro.org> | 2020-08-14 14:39:24 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2020-08-15 06:42:25 +0300 |
commit | 327afdd7c0d13695e8fcbaa0995d451b34c3107b (patch) | |
tree | ebf37862779db3f05231a838276ad2dcd66beb6f /drivers/net/fddi/skfp | |
parent | 026ff46b42f4929b25ef28e1e69dd302835c9783 (diff) | |
download | linux-327afdd7c0d13695e8fcbaa0995d451b34c3107b.tar.xz |
net: fddi: skfp: smt: Place definition of 'smt_pdef' under same stipulations as its use
The variable 'smt_pdef' is only used if LITTLE_ENDIAN is set, so only
define it if this is the case.
Fixes the following W=1 kernel build warning(s):
drivers/net/fddi/skfp/smt.c:1572:3: warning: ‘smt_pdef’ defined but not used [-Wunused-const-variable=]
Cc: "David S. Miller" <davem@davemloft.net>
Cc: Jakub Kicinski <kuba@kernel.org>
Cc: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Cc: netdev@vger.kernel.org
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/fddi/skfp')
-rw-r--r-- | drivers/net/fddi/skfp/smt.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/net/fddi/skfp/smt.c b/drivers/net/fddi/skfp/smt.c index b8c59d803ce6..a151d336b904 100644 --- a/drivers/net/fddi/skfp/smt.c +++ b/drivers/net/fddi/skfp/smt.c @@ -1561,7 +1561,7 @@ u_long smt_get_tid(struct s_smc *smc) return tid & 0x3fffffffL; } - +#ifdef LITTLE_ENDIAN /* * table of parameter lengths */ @@ -1641,6 +1641,7 @@ static const struct smt_pdef { } ; #define N_SMT_PLEN ARRAY_SIZE(smt_pdef) +#endif int smt_check_para(struct s_smc *smc, struct smt_header *sm, const u_short list[]) |