From: Hans de Goede Date: Tue, 5 May 2015 21:56:10 +0000 (+0200) Subject: usb: ohci: Remove unnecessary phcca variable X-Git-Tag: KARO-TX6-2015-09-18~2179 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=7e5a43921986d78249413696512fbd6e559ed5a1;p=karo-tx-uboot.git usb: ohci: Remove unnecessary phcca variable This is a preparation patch for adding driver-model support. Signed-off-by: Hans de Goede Acked-by: Marek Vasut --- diff --git a/drivers/usb/host/ohci-hcd.c b/drivers/usb/host/ohci-hcd.c index b5676ab05d..07e0848c6e 100644 --- a/drivers/usb/host/ohci-hcd.c +++ b/drivers/usb/host/ohci-hcd.c @@ -107,8 +107,6 @@ static struct pci_device_id ehci_pci_ids[] = { static ohci_t gohci; /* this must be aligned to a 256 byte boundary */ struct ohci_hcca ghcca[1]; -/* a pointer to the aligned storage */ -struct ohci_hcca *phcca; static inline u32 roothub_a(struct ohci *hc) { return ohci_readl(&hc->regs->roothub.a); } @@ -1760,10 +1758,9 @@ int usb_lowlevel_init(int index, enum usb_init_type init, void **controller) err("HCCA not aligned!!"); return -1; } - phcca = &ghcca[0]; - info("aligned ghcca %p", phcca); - gohci.hcca = phcca; - memset(phcca, 0, sizeof(struct ohci_hcca)); + gohci.hcca = &ghcca[0]; + info("aligned ghcca %p", gohci.hcca); + memset(gohci.hcca, 0, sizeof(struct ohci_hcca)); gohci.disabled = 1; gohci.sleeping = 0;