diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2000-07-12 01:43:08 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2000-07-12 01:43:08 +0000 |
commit | f4ae78d536e6dfaeb24c01b331fc38d950ed062b (patch) | |
tree | 6930a78aa7cc4ee1829d50d3bcbaf0dbe9e2e905 /drivers/mtd/physmap.c | |
parent | 66f20d0f9bd86dc11f3869d78f3c5749789323ee (diff) |
Merge with 2.4.0-test4-pre2.
Diffstat (limited to 'drivers/mtd/physmap.c')
-rw-r--r-- | drivers/mtd/physmap.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/drivers/mtd/physmap.c b/drivers/mtd/physmap.c index e470a6c97..658b8bf47 100644 --- a/drivers/mtd/physmap.c +++ b/drivers/mtd/physmap.c @@ -1,5 +1,5 @@ /* - * $Id: physmap.c,v 1.1 2000/07/04 08:58:10 dwmw2 Exp $ + * $Id: physmap.c,v 1.2 2000/07/11 09:42:32 dwmw2 Exp $ * * Normal mappings of chips in physical memory */ @@ -10,10 +10,11 @@ #include <asm/io.h> #include <linux/mtd/mtd.h> #include <linux/mtd/map.h> +#include <linux/config.h> -#define WINDOW_ADDR 0x8000000 -#define WINDOW_SIZE 0x4000000 +#define WINDOW_ADDR CONFIG_MTD_PHYSMAP_START +#define WINDOW_SIZE CONFIG_MTD_PHYSMAP_LEN static struct mtd_info *mymtd; |