summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAhmad Fatoum <ahmad@a3f.at>2019-08-27 17:09:11 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2019-08-30 12:05:16 +0200
commit6fa0642f6c7b897ac639cf3cd596f6c317147e1c (patch)
tree572dd036122dd437f0002fbe14abbea0e0a1d92c
parentcb7d858cc5a84ceca8b2989e705fa6bebad2659b (diff)
downloadbarebox-6fa0642f6c7b897ac639cf3cd596f6c317147e1c.tar.gz
barebox-6fa0642f6c7b897ac639cf3cd596f6c317147e1c.tar.xz
blackfin: delete unused <asm/barebox.h> definitions
The file currently defines struct bd_info, bd_t, bi_env_data and bi_env_crc, no of which is used anywhere. Delete them in preparation for getting rid of <asm/barebox.h> altogether. Signed-off-by: Ahmad Fatoum <ahmad@a3f.at> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
-rw-r--r--arch/blackfin/include/asm/barebox.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/arch/blackfin/include/asm/barebox.h b/arch/blackfin/include/asm/barebox.h
index 2684f60a5f..4b1898270a 100644
--- a/arch/blackfin/include/asm/barebox.h
+++ b/arch/blackfin/include/asm/barebox.h
@@ -1,6 +1,4 @@
/*
- * barebox - barebox.h Structure declarations for board specific data
- *
* Copyright (c) 2005 blackfin.uclinux.org
*
* (C) Copyright 2000-2004
@@ -24,20 +22,4 @@
#ifndef _BAREBOX_H_
#define _BAREBOX_H_ 1
-typedef struct bd_info {
- int bi_baudrate; /* serial console baudrate */
- unsigned long bi_ip_addr; /* IP Address */
- unsigned char bi_enetaddr[6]; /* Ethernet adress */
- unsigned long bi_arch_number; /* unique id for this board */
- unsigned long bi_boot_params; /* where this board expects params */
- unsigned long bi_memstart; /* start of DRAM memory */
- unsigned long bi_memsize; /* size of DRAM memory in bytes */
- unsigned long bi_flashstart; /* start of FLASH memory */
- unsigned long bi_flashsize; /* size of FLASH memory */
- unsigned long bi_flashoffset; /* reserved area for startup monitor */
-} bd_t;
-
-#define bi_env_data bi_env->data
-#define bi_env_crc bi_env->crc
-
#endif /* _BAREBOX_H_ */