[PATCH 14/35] global_data: Drop global_data hose
Simon Glass
sjg at chromium.org
Wed Jul 24 17:09:01 CEST 2024
This is set on one x86 boards, but is not used anymore. Drop it.
Signed-off-by: Simon Glass <sjg at chromium.org>
---
arch/x86/cpu/ivybridge/cpu.c | 5 -----
include/asm-generic/global_data.h | 8 +-------
2 files changed, 1 insertion(+), 12 deletions(-)
diff --git a/arch/x86/cpu/ivybridge/cpu.c b/arch/x86/cpu/ivybridge/cpu.c
index d71ab0a6385..05691a38d2e 100644
--- a/arch/x86/cpu/ivybridge/cpu.c
+++ b/arch/x86/cpu/ivybridge/cpu.c
@@ -55,7 +55,6 @@ int arch_cpu_init(void)
static int ivybridge_cpu_init(void)
{
- struct pci_controller *hose;
struct udevice *bus, *dev;
int ret;
@@ -65,10 +64,6 @@ static int ivybridge_cpu_init(void)
if (ret)
return ret;
post_code(0x72);
- hose = dev_get_uclass_priv(bus);
-
- /* TODO(sjg at chromium.org): Get rid of gd->hose */
- gd->hose = hose;
ret = uclass_first_device_err(UCLASS_LPC, &dev);
if (ret)
diff --git a/include/asm-generic/global_data.h b/include/asm-generic/global_data.h
index d014beb2617..e57015365c1 100644
--- a/include/asm-generic/global_data.h
+++ b/include/asm-generic/global_data.h
@@ -210,7 +210,7 @@ struct global_data {
#endif
#ifdef CONFIG_TIMER
/**
-s * @timer: timer instance for Driver Model
+ * @timer: timer instance for Driver Model
*/
struct udevice *timer;
#endif
@@ -297,12 +297,6 @@ s * @timer: timer instance for Driver Model
*/
unsigned long malloc_ptr;
#endif
-#ifdef CONFIG_PCI
- /**
- * @hose: PCI hose for early use
- */
- struct pci_controller *hose;
-#endif
#ifdef CONFIG_PCI_BOOTDELAY
/**
* @pcidelay_done: delay time before scanning of PIC hose expired
--
2.34.1
More information about the U-Boot
mailing list