mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-21 20:34:38 +00:00
global_data: Drop global_data hose
This is set on one x86 boards, but is not used anymore. Drop it. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
7d08262ec3
commit
a6616bac98
2 changed files with 0 additions and 11 deletions
|
@ -55,7 +55,6 @@ int arch_cpu_init(void)
|
||||||
|
|
||||||
static int ivybridge_cpu_init(void)
|
static int ivybridge_cpu_init(void)
|
||||||
{
|
{
|
||||||
struct pci_controller *hose;
|
|
||||||
struct udevice *bus, *dev;
|
struct udevice *bus, *dev;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
|
@ -65,10 +64,6 @@ static int ivybridge_cpu_init(void)
|
||||||
if (ret)
|
if (ret)
|
||||||
return ret;
|
return ret;
|
||||||
post_code(0x72);
|
post_code(0x72);
|
||||||
hose = dev_get_uclass_priv(bus);
|
|
||||||
|
|
||||||
/* TODO(sjg@chromium.org): Get rid of gd->hose */
|
|
||||||
gd->hose = hose;
|
|
||||||
|
|
||||||
ret = uclass_first_device_err(UCLASS_LPC, &dev);
|
ret = uclass_first_device_err(UCLASS_LPC, &dev);
|
||||||
if (ret)
|
if (ret)
|
||||||
|
|
|
@ -298,12 +298,6 @@ struct global_data {
|
||||||
*/
|
*/
|
||||||
unsigned long malloc_ptr;
|
unsigned long malloc_ptr;
|
||||||
#endif
|
#endif
|
||||||
#ifdef CONFIG_PCI
|
|
||||||
/**
|
|
||||||
* @hose: PCI hose for early use
|
|
||||||
*/
|
|
||||||
struct pci_controller *hose;
|
|
||||||
#endif
|
|
||||||
#ifdef CONFIG_PCI_BOOTDELAY
|
#ifdef CONFIG_PCI_BOOTDELAY
|
||||||
/**
|
/**
|
||||||
* @pcidelay_done: delay time before scanning of PIC hose expired
|
* @pcidelay_done: delay time before scanning of PIC hose expired
|
||||||
|
|
Loading…
Add table
Reference in a new issue