diff options
author | Adrian Bunk <bunk@kernel.org> | 2009-04-27 02:36:20 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-04-27 02:36:20 -0700 |
commit | c759a6b4e1cae6aff71f58c9c85404ebcd81b6e0 (patch) | |
tree | 0c91cc3b8b06534f1c169867baa0c1061a8f6663 /include/linux/netdevice.h | |
parent | 785a0982eaaeae2fbe3372d1c9c769e8156a7a5a (diff) |
net: Fix LL_MAX_HEADER for CONFIG_TR_MODULE
Unless I miss anything this should fix a bug.
Signed-off-by: Adrian Bunk <bunk@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/netdevice.h')
-rw-r--r-- | include/linux/netdevice.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index 2e7783f4a75..453be9a674c 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h @@ -104,7 +104,7 @@ struct wireless_dev; # else # define LL_MAX_HEADER 96 # endif -#elif defined(CONFIG_TR) +#elif defined(CONFIG_TR) || defined(CONFIG_TR_MODULE) # define LL_MAX_HEADER 48 #else # define LL_MAX_HEADER 32 |