diff options
author | Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> | 2008-06-09 23:37:44 +0900 |
---|---|---|
committer | Ben Warren <biggerbadderben@gmail.com> | 2008-06-09 23:21:05 -0700 |
commit | 3b904ccb93c3196727e2e9870cb1df903cab19ad (patch) | |
tree | cdba708c7c336b6a20c22a392a7160e21cd538e4 /drivers/net/netconsole.c | |
parent | e44f3ea4e801d37ef293284cb57b9637382f211a (diff) | |
download | u-boot-imx-3b904ccb93c3196727e2e9870cb1df903cab19ad.zip u-boot-imx-3b904ccb93c3196727e2e9870cb1df903cab19ad.tar.gz u-boot-imx-3b904ccb93c3196727e2e9870cb1df903cab19ad.tar.bz2 |
net: Conditional COBJS inclusion of network drivers
Replace COBJS-y with appropriate driver config names.
Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
Diffstat (limited to 'drivers/net/netconsole.c')
-rw-r--r-- | drivers/net/netconsole.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/drivers/net/netconsole.c b/drivers/net/netconsole.c index 69089f9..b2ee5ea 100644 --- a/drivers/net/netconsole.c +++ b/drivers/net/netconsole.c @@ -22,9 +22,6 @@ */ #include <common.h> - -#ifdef CONFIG_NETCONSOLE - #include <command.h> #include <devices.h> #include <net.h> @@ -263,5 +260,3 @@ int drv_nc_init (void) return (rc == 0) ? 1 : rc; } - -#endif /* CONFIG_NETCONSOLE */ |