mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-14 02:27:39 -04:00
fix more red in hosted targets that don't share the generic system implementation
Change-Id: I38f59005e75fb7326e655f22bbe63048f31573a3
This commit is contained in:
parent
57cd8cd712
commit
21ebfd574a
4 changed files with 28 additions and 0 deletions
|
@ -150,3 +150,10 @@ bool volume_present(int volume)
|
||||||
return hostfs_present(volume);
|
return hostfs_present(volume);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
int volume_partition(int volume)
|
||||||
|
{
|
||||||
|
(void)volume;
|
||||||
|
/* Hosted only implement a single parition per "drive" */
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
|
@ -281,3 +281,10 @@ void set_cpu_frequency(long frequency)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
int volume_partition(int volume)
|
||||||
|
{
|
||||||
|
(void)volume;
|
||||||
|
/* Hosted only implement a single parition per "drive" */
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
|
@ -80,3 +80,10 @@ int hostfs_flush(void)
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int volume_partition(int volume)
|
||||||
|
{
|
||||||
|
(void)volume;
|
||||||
|
/* Hosted only implement a single parition per "drive" */
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
|
@ -296,3 +296,10 @@ bool volume_present(int volume)
|
||||||
return hostfs_present(volume);
|
return hostfs_present(volume);
|
||||||
}
|
}
|
||||||
#endif /* HAVE_HOTSWAP */
|
#endif /* HAVE_HOTSWAP */
|
||||||
|
|
||||||
|
int volume_partition(int volume)
|
||||||
|
{
|
||||||
|
(void)volume;
|
||||||
|
/* Hosted only implement a single parition per "drive" */
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue