summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorJean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>2009-10-22 14:21:29 +0200
committerJean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>2009-10-22 14:21:29 +0200
commitb4521685bf00398a4db0d3abe28376bd8f1b31ed (patch)
tree91c2097bc5f467c15ff8b404b288b8f916d80541 /include
parente2a7b79cfc63c8a5bdafb6f333fedf35b6b8a380 (diff)
downloadbarebox-b4521685bf00398a4db0d3abe28376bd8f1b31ed.tar.gz
barebox-b4521685bf00398a4db0d3abe28376bd8f1b31ed.tar.xz
[SANDBOX] Move include/asm-sandbox/arch-* to arch/sandbox/*/include/mach
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Diffstat (limited to 'include')
-rw-r--r--include/asm-sandbox/arch-sandbox/hostfile.h15
-rw-r--r--include/asm-sandbox/arch-sandbox/linux.h23
2 files changed, 0 insertions, 38 deletions
diff --git a/include/asm-sandbox/arch-sandbox/hostfile.h b/include/asm-sandbox/arch-sandbox/hostfile.h
deleted file mode 100644
index 30f9499c03..0000000000
--- a/include/asm-sandbox/arch-sandbox/hostfile.h
+++ /dev/null
@@ -1,15 +0,0 @@
-#ifndef __ASM_ARCH_HOSTFILE_H
-#define __ASM_ARCH_HOSTFILE_H
-
-struct hf_platform_data {
- int fd;
- size_t size;
- unsigned long map_base;
- char *filename;
- char *name;
-};
-
-int u_boot_register_filedev(struct hf_platform_data *hf);
-
-#endif /* __ASM_ARCH_HOSTFILE_H */
-
diff --git a/include/asm-sandbox/arch-sandbox/linux.h b/include/asm-sandbox/arch-sandbox/linux.h
deleted file mode 100644
index 09376413e9..0000000000
--- a/include/asm-sandbox/arch-sandbox/linux.h
+++ /dev/null
@@ -1,23 +0,0 @@
-#ifndef __ASM_ARCH_LINUX_H
-#define __ASM_ARCH_LINUX_H
-
-int linux_register_device(const char *name, void *start, void *end);
-int tap_alloc(char *dev);
-uint64_t linux_get_time(void);
-int linux_read(int fd, void *buf, size_t count);
-int linux_read_nonblock(int fd, void *buf, size_t count);
-ssize_t linux_write(int fd, const void *buf, size_t count);
-off_t linux_lseek(int fildes, off_t offset);
-int linux_getc (void);
-void linux_putc (const char c);
-int linux_tstc(int fd);
-
-int u_boot_register_console(char *name_template, int stdinfd, int stdoutfd);
-
-struct linux_console_data {
- int stdinfd;
- int stdoutfd;
- unsigned int flags;
-};
-
-#endif /* __ASM_ARCH_LINUX_H */