diff options
author | Matthew McClintock <msm@freescale.com> | 2011-05-24 05:31:19 +0000 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2011-07-26 14:10:14 +0200 |
commit | df3fc52608daa1e10332f59cd2f226ba400d1c98 (patch) | |
tree | 0c614241f09bc6055cbb5855feeaaeeeca975ce5 /common/cmd_sata.c | |
parent | 07c07635b4f6d4ee2a03cd508beeeaccde4b9d7e (diff) | |
download | u-boot-imx-df3fc52608daa1e10332f59cd2f226ba400d1c98.zip u-boot-imx-df3fc52608daa1e10332f59cd2f226ba400d1c98.tar.gz u-boot-imx-df3fc52608daa1e10332f59cd2f226ba400d1c98.tar.bz2 |
disk/part.c: Make features optional
If we don't want to build support for any partition types we can now
add #undef CONFIG_PARTITIONS in a board config file to keep this from
being compiled in. Otherwise boards assume this is compiled in by
default
Signed-off-by: Matthew McClintock <msm@freescale.com>
Diffstat (limited to 'common/cmd_sata.c')
-rw-r--r-- | common/cmd_sata.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/common/cmd_sata.c b/common/cmd_sata.c index 7efa859..f62c0cb 100644 --- a/common/cmd_sata.c +++ b/common/cmd_sata.c @@ -57,10 +57,12 @@ int __sata_initialize(void) } int sata_initialize(void) __attribute__((weak,alias("__sata_initialize"))); +#ifdef CONFIG_PARTITIONS block_dev_desc_t *sata_get_dev(int dev) { return (dev < CONFIG_SYS_SATA_MAX_DEVICE) ? &sata_dev_desc[dev] : NULL; } +#endif int do_sata(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) { |