diff options
author | juhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2012-11-25 14:25:54 +0000 |
---|---|---|
committer | juhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2012-11-25 14:25:54 +0000 |
commit | e6517134679cde8a81f7b0762c91527145d00908 (patch) | |
tree | aba15ec81784efda249ce87acb90b77d62993504 | |
parent | aa21e49e2aafe711ad352f778bcc8c38a994e276 (diff) |
ramips: ramips_eth: use Kconfig definition to enable debug
The Kconfig identifier to enable debugging in the driver was different from the
actually used one. Fix that.
Signed-off-by: Paul Fertser <fercerpav@gmail.com>
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@34332 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | target/linux/ramips/files/drivers/net/ethernet/ramips/ramips_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/ramips/files/drivers/net/ethernet/ramips/ramips_main.c b/target/linux/ramips/files/drivers/net/ethernet/ramips/ramips_main.c index b6c72b8a8..267860ff0 100644 --- a/target/linux/ramips/files/drivers/net/ethernet/ramips/ramips_main.c +++ b/target/linux/ramips/files/drivers/net/ethernet/ramips/ramips_main.c @@ -43,7 +43,7 @@ static inline int soc_is_rt5350(void) { return 0; } #define phys_to_bus(a) (a & 0x1FFFFFFF) -#ifdef CONFIG_RAMIPS_ETH_DEBUG +#ifdef CONFIG_NET_RAMIPS_DEBUG #define RADEBUG(fmt, args...) printk(KERN_DEBUG fmt, ## args) #else #define RADEBUG(fmt, args...) do {} while (0) |