diff options
author | Pali Rohár <pali@kernel.org> | 2020-04-01 00:35:13 +0200 |
---|---|---|
committer | Lokesh Vutla <lokeshvutla@ti.com> | 2020-05-11 10:16:49 +0530 |
commit | f5cfdbf9c996c577f4530a31a5af9ffcf870f7fc (patch) | |
tree | 15f9e7c1143454ee7c9730bbfa41f32c14e066f7 /include | |
parent | c3cc829d33b4df5add565e272f6fc2deb3dbf692 (diff) | |
download | u-boot-f5cfdbf9c996c577f4530a31a5af9ffcf870f7fc.zip u-boot-f5cfdbf9c996c577f4530a31a5af9ffcf870f7fc.tar.gz u-boot-f5cfdbf9c996c577f4530a31a5af9ffcf870f7fc.tar.bz2 |
Nokia RX-51: Remove PART* macros
Now when code for defining partitions is duplicated at two locations
(option CONFIG_MTDPARTS_DEFAULT in nokia_rx51_defconfig file and macro
OMAP_TAG_PARTITION_CONFIG in rx51.c file) there is no need to have common
macros. Lets inline PART* macros to rx51.c file.
Signed-off-by: Pali Rohár <pali@kernel.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/nokia_rx51.h | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/include/configs/nokia_rx51.h b/include/configs/nokia_rx51.h index 68374cb..dd3b8ea 100644 --- a/include/configs/nokia_rx51.h +++ b/include/configs/nokia_rx51.h @@ -91,48 +91,6 @@ * Board ONENAND Info. */ -#define PART1_NAME "bootloader" -#define PART1_SIZE 128 -#define PART1_MULL 1024 -#define PART1_SUFF "k" -#define PART1_OFFS 0x00000000 -#define PART1_MASK 0x00000003 - -#define PART2_NAME "config" -#define PART2_SIZE 384 -#define PART2_MULL 1024 -#define PART2_SUFF "k" -#define PART2_OFFS 0x00020000 -#define PART2_MASK 0x00000000 - -#define PART3_NAME "log" -#define PART3_SIZE 256 -#define PART3_MULL 1024 -#define PART3_SUFF "k" -#define PART3_OFFS 0x00080000 -#define PART3_MASK 0x00000000 - -#define PART4_NAME "kernel" -#define PART4_SIZE 2 -#define PART4_MULL 1024*1024 -#define PART4_SUFF "m" -#define PART4_OFFS 0x000c0000 -#define PART4_MASK 0x00000000 - -#define PART5_NAME "initfs" -#define PART5_SIZE 2 -#define PART5_MULL 1024*1024 -#define PART5_SUFF "m" -#define PART5_OFFS 0x002c0000 -#define PART5_MASK 0x00000000 - -#define PART6_NAME "rootfs" -#define PART6_SIZE 257280 -#define PART6_MULL 1024 -#define PART6_SUFF "k" -#define PART6_OFFS 0x004c0000 -#define PART6_MASK 0x00000000 - #define CONFIG_SYS_ONENAND_BASE ONENAND_MAP /* Watchdog support */ |