diff options
| author | Simon Glass <[email protected]> | 2020-05-10 11:40:13 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2020-05-18 21:19:23 -0400 |
| commit | cd93d625fd751d55c729c78b10f82109d56a5f1d (patch) | |
| tree | 158fd30f3d06142f6a99cbae6ed8ccb0f3be567b /drivers/usb/eth | |
| parent | f09f1ecbe77863ecefe586ccd6000064b49105a3 (diff) | |
common: Drop linux/bitops.h from common header
Move this uncommon header out of the common header.
Signed-off-by: Simon Glass <[email protected]>
Diffstat (limited to 'drivers/usb/eth')
| -rw-r--r-- | drivers/usb/eth/lan75xx.c | 1 | ||||
| -rw-r--r-- | drivers/usb/eth/lan78xx.c | 1 | ||||
| -rw-r--r-- | drivers/usb/eth/lan7x.h | 1 | ||||
| -rw-r--r-- | drivers/usb/eth/r8152.h | 1 | ||||
| -rw-r--r-- | drivers/usb/eth/r8152_fw.c | 1 |
5 files changed, 5 insertions, 0 deletions
diff --git a/drivers/usb/eth/lan75xx.c b/drivers/usb/eth/lan75xx.c index 94c6522a411..46b92e8d68b 100644 --- a/drivers/usb/eth/lan75xx.c +++ b/drivers/usb/eth/lan75xx.c @@ -6,6 +6,7 @@ #include <dm.h> #include <log.h> #include <usb.h> +#include <linux/bitops.h> #include <linux/mii.h> #include "usb_ether.h" #include "lan7x.h" diff --git a/drivers/usb/eth/lan78xx.c b/drivers/usb/eth/lan78xx.c index 1d1b64ef3e2..e34ad2603fb 100644 --- a/drivers/usb/eth/lan78xx.c +++ b/drivers/usb/eth/lan78xx.c @@ -7,6 +7,7 @@ #include <log.h> #include <net.h> #include <usb.h> +#include <linux/bitops.h> #include "usb_ether.h" #include "lan7x.h" diff --git a/drivers/usb/eth/lan7x.h b/drivers/usb/eth/lan7x.h index 35965e9645a..f71e8c7268c 100644 --- a/drivers/usb/eth/lan7x.h +++ b/drivers/usb/eth/lan7x.h @@ -6,6 +6,7 @@ #include <console.h> #include <time.h> #include <watchdog.h> +#include <linux/bitops.h> #include <linux/delay.h> #include <linux/errno.h> diff --git a/drivers/usb/eth/r8152.h b/drivers/usb/eth/r8152.h index b6df535a832..09f1c6178b9 100644 --- a/drivers/usb/eth/r8152.h +++ b/drivers/usb/eth/r8152.h @@ -7,6 +7,7 @@ #ifndef _RTL8152_ETH_H #define _RTL8152_ETH_H +#include <linux/bitops.h> #define R8152_BASE_NAME "r8152" #define PLA_IDR 0xc000 diff --git a/drivers/usb/eth/r8152_fw.c b/drivers/usb/eth/r8152_fw.c index d564de285f1..3ebbd533cc0 100644 --- a/drivers/usb/eth/r8152_fw.c +++ b/drivers/usb/eth/r8152_fw.c @@ -6,6 +6,7 @@ #include <common.h> #include <dm.h> #include <errno.h> +#include <linux/bitops.h> #include <linux/delay.h> #include "usb_ether.h" #include "r8152.h" |
