From mboxrd@z Thu Jan 1 00:00:00 1970 From: Daniel Schwierzeck Date: Thu, 23 Apr 2020 21:10:08 +0200 Subject: [PATCH] bmips: allow disabling usb support In-Reply-To: <20200404140112.5074-1-noltari@gmail.com> References: <20200404140112.5074-1-noltari@gmail.com> Message-ID: <69a22634-2aaa-6543-0370-e73229224384@gmail.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Am 04.04.20 um 16:01 schrieb ?lvaro Fern?ndez Rojas: > Currently, if usb is disabled the following error is produced: > CC drivers/usb/host/ohci-hcd.o > drivers/usb/host/ohci-hcd.c: In function ?usb_lowlevel_init?: > drivers/usb/host/ohci-hcd.c:2057:35: error: ?CONFIG_SYS_USB_OHCI_REGS_BASE? undeclared (first use in this function); did you mean ?CONFIG_SYS_MONITOR_BASE?? > gohci.regs = (struct ohci_regs *)CONFIG_SYS_USB_OHCI_REGS_BASE; > ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ > CONFIG_SYS_MONITOR_BASE > drivers/usb/host/ohci-hcd.c:2057:35: note: each undeclared identifier is reported only once for each function it appears in > drivers/usb/host/ohci-hcd.c:2061:20: error: ?CONFIG_SYS_USB_OHCI_SLOT_NAME? undeclared (first use in this function); did you mean ?CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS?? > gohci.slot_name = CONFIG_SYS_USB_OHCI_SLOT_NAME; > ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ > CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS > > Signed-off-by: ?lvaro Fern?ndez Rojas > --- > include/configs/bmips_bcm6318.h | 2 ++ > include/configs/bmips_bcm63268.h | 2 ++ > include/configs/bmips_bcm6328.h | 2 ++ > include/configs/bmips_bcm6348.h | 2 ++ > include/configs/bmips_bcm6358.h | 2 ++ > include/configs/bmips_bcm6362.h | 2 ++ > include/configs/bmips_bcm6368.h | 2 ++ > 7 files changed, 14 insertions(+) > applied to u-boot-mips, thanks. -- - Daniel