remove nand_soft_reset and nand_disk_is_active already voided in storage.h
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21924 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
bdb5974c0e
commit
9191b3c16e
2 changed files with 0 additions and 22 deletions
|
@ -69,11 +69,6 @@ void nand_spindown(int seconds)
|
|||
(void)seconds;
|
||||
}
|
||||
|
||||
bool nand_disk_is_active(void)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
void nand_sleep(void)
|
||||
{
|
||||
}
|
||||
|
@ -82,11 +77,6 @@ void nand_spin(void)
|
|||
{
|
||||
}
|
||||
|
||||
int nand_soft_reset(void)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
void nand_enable(bool on)
|
||||
{
|
||||
(void)on;
|
||||
|
|
|
@ -691,12 +691,6 @@ void nand_spindown(int seconds)
|
|||
(void)seconds;
|
||||
}
|
||||
|
||||
bool nand_disk_is_active(void)
|
||||
{
|
||||
/* null */
|
||||
return false;
|
||||
}
|
||||
|
||||
void nand_sleep(void)
|
||||
{
|
||||
/* null */
|
||||
|
@ -707,12 +701,6 @@ void nand_spin(void)
|
|||
/* null */
|
||||
}
|
||||
|
||||
int nand_soft_reset(void)
|
||||
{
|
||||
/* null */
|
||||
return 0;
|
||||
}
|
||||
|
||||
void nand_enable(bool on)
|
||||
{
|
||||
/* null - flash controller is enabled/disabled as needed. */
|
||||
|
|
Loading…
Reference in a new issue