Make disk_init() non-static again. I forgot to look at the bootloaders

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26629 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Frank Gevaerts 2010-06-06 13:28:13 +00:00
parent 28833f09e2
commit d39ac31877
2 changed files with 2 additions and 1 deletions

View file

@ -66,7 +66,7 @@ static struct mutex disk_mutex;
int disk_sector_multiplier = 1;
#endif
static struct partinfo* disk_init(IF_MD_NONVOID(int drive))
struct partinfo* disk_init(IF_MD_NONVOID(int drive))
{
int i;
unsigned char sector[SECTOR_SIZE];

View file

@ -35,6 +35,7 @@ struct partinfo {
#define PARTITION_TYPE_OS2_HIDDEN_C_DRIVE 0x84
/* returns a pointer to an array of 8 partinfo structs */
struct partinfo* disk_init(IF_MD_NONVOID(int drive));
struct partinfo* disk_partinfo(int partition);
void disk_init_subsystem(void); /* Initialises mutexes */