diff options
author | Solomon Peachy <pizza@shaftnet.org> | 2025-01-07 20:29:06 -0500 |
---|---|---|
committer | Solomon Peachy <pizza@shaftnet.org> | 2025-01-07 20:29:35 -0500 |
commit | 4cd0c35150eea6e0652b7598dbd004a449305f8e (patch) | |
tree | 1bb66897334fb19574c6e059e85f70cebbeb6906 | |
parent | 14b8820231a67ab4fc46c1eee56c17bfa9456db0 (diff) | |
download | rockbox-4cd0c35150.tar.gz rockbox-4cd0c35150.zip |
imx233: Fix up compilation problems with the IMX233 ATA driver
Change-Id: I726b76aa4ac3e0986f530727d342c99909a1742c
-rw-r--r-- | firmware/target/arm/imx233/ata-imx233.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/firmware/target/arm/imx233/ata-imx233.c b/firmware/target/arm/imx233/ata-imx233.c index 6abd486862..b8f3268bdd 100644 --- a/firmware/target/arm/imx233/ata-imx233.c +++ b/firmware/target/arm/imx233/ata-imx233.c @@ -27,6 +27,7 @@ #include "clkctrl-imx233.h" #include "ata-target.h" #include "ata-defines.h" +#include "kernel.h" #include "regs/gpmi.h" @@ -131,6 +132,7 @@ void ata_reset(void) void ata_enable(bool on) { + (void)on; } bool ata_is_coldstart(void) @@ -221,6 +223,3 @@ void ata_device_init(void) } #endif /* ATA_IMX233_H */ - - - |