summaryrefslogtreecommitdiff
path: root/drivers/usb
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2023-12-14 13:16:47 -0500
committerTom Rini <[email protected]>2023-12-21 08:54:37 -0500
commitcb3ce954013ce383e64b73b65df1eb4ef8833570 (patch)
tree5e33dd6fc11882f093071e5694a22b5d642beaed /drivers/usb
parent460b2c068c07d665af48566cfe39582086fed921 (diff)
global: Drop common.h inclusion
In order to make it easier to move on to dropping common.h from code directly, remove common.h inclusion from the rest of the header file which had been including it. Reviewed-by: Simon Glass <[email protected]> Signed-off-by: Tom Rini <[email protected]>
Diffstat (limited to 'drivers/usb')
-rw-r--r--drivers/usb/gadget/bcm_udc_otg.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/usb/gadget/bcm_udc_otg.h b/drivers/usb/gadget/bcm_udc_otg.h
index 24cc936c6b4..48370f37d8a 100644
--- a/drivers/usb/gadget/bcm_udc_otg.h
+++ b/drivers/usb/gadget/bcm_udc_otg.h
@@ -6,8 +6,6 @@
#ifndef __BCM_UDC_OTG_H
#define __BCM_UDC_OTG_H
-#include <common.h>
-
static inline void wfld_set(uintptr_t addr, uint32_t fld_val, uint32_t fld_mask)
{
writel(((readl(addr) & ~(fld_mask)) | (fld_val)), (addr));