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>
This commit is contained in:
committed by
Wolfgang Denk
parent
07c07635b4
commit
df3fc52608
@@ -719,10 +719,12 @@ void ide_init (void)
|
||||
|
||||
/* ------------------------------------------------------------------------- */
|
||||
|
||||
#ifdef CONFIG_PARTITIONS
|
||||
block_dev_desc_t * ide_get_dev(int dev)
|
||||
{
|
||||
return (dev < CONFIG_SYS_IDE_MAXDEVICE) ? &ide_dev_desc[dev] : NULL;
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
#ifdef CONFIG_IDE_8xx_DIRECT
|
||||
|
||||
Reference in New Issue
Block a user