summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--firmware/target/mips/ingenic_jz47xx/ata-nand-jz4740.c1
-rw-r--r--firmware/target/mips/ingenic_jz47xx/ata-nand-target.h28
2 files changed, 0 insertions, 29 deletions
diff --git a/firmware/target/mips/ingenic_jz47xx/ata-nand-jz4740.c b/firmware/target/mips/ingenic_jz47xx/ata-nand-jz4740.c
index 55c742b8b0..f201983404 100644
--- a/firmware/target/mips/ingenic_jz47xx/ata-nand-jz4740.c
+++ b/firmware/target/mips/ingenic_jz47xx/ata-nand-jz4740.c
@@ -22,7 +22,6 @@
22#include "config.h" 22#include "config.h"
23#include "jz4740.h" 23#include "jz4740.h"
24#include "nand.h" 24#include "nand.h"
25//#include "ata-nand-target.h" /* TODO */
26#include "nand_id.h" 25#include "nand_id.h"
27#include "system.h" 26#include "system.h"
28#include "panic.h" 27#include "panic.h"
diff --git a/firmware/target/mips/ingenic_jz47xx/ata-nand-target.h b/firmware/target/mips/ingenic_jz47xx/ata-nand-target.h
deleted file mode 100644
index c8b2376e41..0000000000
--- a/firmware/target/mips/ingenic_jz47xx/ata-nand-target.h
+++ /dev/null
@@ -1,28 +0,0 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2008 by Maurus Cuelenaere
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
16 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
19 *
20 ****************************************************************************/
21#ifndef ATA_NAND_TARGET_H
22#define ATA_NAND_TARGET_H
23
24int nand_read_sectors(unsigned long start, int count, void* buf);
25int nand_write_sectors(unsigned long start, int count, const void* buf);
26int nand_init(void);
27
28#endif