sim: stub out volume_partition() for sim targets

Not sure why this doesn't blow up in more places, but eh..

Change-Id: I45214243c0d03a2156dca8f727caadde5f34c23f
This commit is contained in:
Solomon Peachy 2024-08-12 16:10:12 -04:00
parent 8c25fcfbf0
commit ad0c131918

View file

@ -270,6 +270,13 @@ int volume_drive(int volume)
}
#endif
int volume_partition(int volume)
{
(void)volume;
/* Sims only implement a single parition per drive */
return 0;
}
#if (CONFIG_STORAGE & STORAGE_MMC)
bool mmc_touched(void)
{