X-Git-Url: https://review.openocd.org/gitweb?a=blobdiff_plain;f=src%2Fflash%2Fnand%2Fnonce.c;h=565ad727f35c54924e9019b8f3a80ca3110df776;hb=b7b9ad755eb2cd81513247abcc7f6f1d434d8d2c;hp=8d15040ffacb0cca08c432ccc646a797118b1ee0;hpb=f7bd1e8f3a302378687ded559e865c258d441c89;p=openocd.git diff --git a/src/flash/nand/nonce.c b/src/flash/nand/nonce.c index 8d15040ffa..565ad727f3 100644 --- a/src/flash/nand/nonce.c +++ b/src/flash/nand/nonce.c @@ -20,7 +20,8 @@ #ifdef HAVE_CONFIG_H #include "config.h" #endif -#include + +#include "imp.h" #include "hello.h" @@ -51,11 +52,6 @@ static int nonce_nand_reset(struct nand_device *nand) return nonce_nand_command(nand, NAND_CMD_RESET); } -static int nonce_nand_controller_ready(struct nand_device *nand, int timeout) -{ - return true; -} - NAND_DEVICE_COMMAND_HANDLER(nonce_nand_device_command) { return ERROR_OK; @@ -78,5 +74,4 @@ struct nand_flash_controller nonce_nand_controller = .read_data = &nonce_nand_read, .write_data = &nonce_nand_write, .write_block_data = &nonce_nand_fast_block_write, - .controller_ready = &nonce_nand_controller_ready, };