summaryrefslogtreecommitdiff
path: root/firmware/target/mips/ingenic_jz47xx/ata-nand-jz4760.c
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2024-07-07 14:36:55 -0400
committerSolomon Peachy <pizza@shaftnet.org>2024-07-07 14:47:07 -0400
commit1528b44349d33495c7ea5dc7b3fcd8e07995d16e (patch)
treea4577b96e157038c0ee3d4e5160fbe5309851e06 /firmware/target/mips/ingenic_jz47xx/ata-nand-jz4760.c
parent520875ff00f23f8d986e3d7dd8e2f3937e9dda7e (diff)
downloadrockbox-1528b44349d33495c7ea5dc7b3fcd8e07995d16e.tar.gz
rockbox-1528b44349d33495c7ea5dc7b3fcd8e07995d16e.zip
More red fixes
Change-Id: If22cdb286edac47b08b158bee6910ba7a539b041
Diffstat (limited to 'firmware/target/mips/ingenic_jz47xx/ata-nand-jz4760.c')
-rw-r--r--firmware/target/mips/ingenic_jz47xx/ata-nand-jz4760.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/firmware/target/mips/ingenic_jz47xx/ata-nand-jz4760.c b/firmware/target/mips/ingenic_jz47xx/ata-nand-jz4760.c
index efce5742d0..1c9fe4300b 100644
--- a/firmware/target/mips/ingenic_jz47xx/ata-nand-jz4760.c
+++ b/firmware/target/mips/ingenic_jz47xx/ata-nand-jz4760.c
@@ -563,7 +563,7 @@ static inline int write_sector(unsigned long start, unsigned int count,
563 return ret; 563 return ret;
564} 564}
565 565
566int nand_read_sectors(IF_MV(int drive,) unsigned long start, int count, void* buf) 566int nand_read_sectors(IF_MD(int drive,) unsigned long start, int count, void* buf)
567{ 567{
568#ifdef HAVE_MULTIVOLUME 568#ifdef HAVE_MULTIVOLUME
569 (void)drive; 569 (void)drive;
@@ -590,7 +590,7 @@ int nand_read_sectors(IF_MV(int drive,) unsigned long start, int count, void* bu
590 return ret; 590 return ret;
591} 591}
592 592
593int nand_write_sectors(IF_MV(int drive,) unsigned long start, int count, const void* buf) 593int nand_write_sectors(IF_MD(int drive,) unsigned long start, int count, const void* buf)
594{ 594{
595#ifdef HAVE_MULTIVOLUME 595#ifdef HAVE_MULTIVOLUME
596 (void)drive; 596 (void)drive;
@@ -662,7 +662,7 @@ void nand_sleepnow(void)
662} 662}
663 663
664#ifdef STORAGE_GET_INFO 664#ifdef STORAGE_GET_INFO
665void nand_get_info(IF_MV(int drive,) struct storage_info *info) 665void nand_get_info(IF_MD(int drive,) struct storage_info *info)
666{ 666{
667#ifdef HAVE_MULTIVOLUME 667#ifdef HAVE_MULTIVOLUME
668 (void)drive; 668 (void)drive;