From: Moritz Fischer Date: Mon, 14 Jun 2021 21:56:14 +0000 (-0700) Subject: usb: renesas-xhci: Replace BIT(15) with macro X-Git-Tag: microblaze-v5.15~65^2~50 X-Git-Url: http://git.monstr.eu/?a=commitdiff_plain;h=e90f9ceb7059518de333bf8b41c06d3dff432d3b;p=linux-2.6-microblaze.git usb: renesas-xhci: Replace BIT(15) with macro Replace BIT(15) with RENESAS_ROM_STATUS_ROM_EXISTS. Signed-off-by: Moritz Fischer Link: https://lore.kernel.org/r/20210614215614.240489-1-mdf@kernel.org Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/usb/host/xhci-pci-renesas.c b/drivers/usb/host/xhci-pci-renesas.c index f97ac9f52bf4..5923844ed821 100644 --- a/drivers/usb/host/xhci-pci-renesas.c +++ b/drivers/usb/host/xhci-pci-renesas.c @@ -197,7 +197,7 @@ static int renesas_check_rom_state(struct pci_dev *pdev) if (err) return pcibios_err_to_errno(err); - if (rom_state & BIT(15)) { + if (rom_state & RENESAS_ROM_STATUS_ROM_EXISTS) { /* ROM exists */ dev_dbg(&pdev->dev, "ROM exists\n");