summaryrefslogtreecommitdiffstats
path: root/board
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2007-07-05 18:01:53 +0200
committerSascha Hauer <sha@octopus.labnet.pengutronix.de>2007-07-05 18:01:53 +0200
commit07045831cdff78eb39fe9a1a830cd91cc02178f8 (patch)
treeb7799b1a16e044a085ac60713af4e1325181bb2e /board
parent8785eb9c9978a7755f21880ae885aded89637696 (diff)
downloadbarebox-07045831cdff78eb39fe9a1a830cd91cc02178f8.tar.gz
barebox-07045831cdff78eb39fe9a1a830cd91cc02178f8.tar.xz
svn_rev_430
Diffstat (limited to 'board')
-rw-r--r--board/scb9328/scb9328.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/board/scb9328/scb9328.c b/board/scb9328/scb9328.c
index ec75bf529b..1be10dfe18 100644
--- a/board/scb9328/scb9328.c
+++ b/board/scb9328/scb9328.c
@@ -49,9 +49,6 @@ static struct device_d dm9000_dev = {
.type = DEVICE_TYPE_ETHER,
};
-/* Do not collide with the env from our first stage loader for now */
-static char *env_spec = "nor0:256k+128k";
-
static int scb9328_devices_init(void) {
register_device(&cfi_dev);
register_device(&sdram_dev);
@@ -61,12 +58,3 @@ static int scb9328_devices_init(void) {
}
device_initcall(scb9328_devices_init);
-
-static int scb9328_init_env(void)
-{
- add_env_spec(env_spec);
- return 0;
-}
-
-late_initcall(scb9328_init_env);
-