diff options
author | Alexander Shishkin <alexander.shishkin@linux.intel.com> | 2012-05-11 10:25:53 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-05-11 19:54:54 -0400 |
commit | 758fc9860c19eceb56e5886a5225db623c521971 (patch) | |
tree | 81ecd0a568d9b484b6149d65dfa8cbce279620fe /drivers/usb/chipidea/bits.h | |
parent | f7daaa2d6e84f7be1e302d7bcba4f5f11567eddb (diff) |
usb: chipidea: use common definition for USBMODE bits
Some of the bits of USBMODE register are defined in <usb/ehci_def.h>,
use them instead of having our own definitions.
Signed-off-by: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/chipidea/bits.h')
-rw-r--r-- | drivers/usb/chipidea/bits.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/usb/chipidea/bits.h b/drivers/usb/chipidea/bits.h index 62c35af1a5af..44b3e254b6a5 100644 --- a/drivers/usb/chipidea/bits.h +++ b/drivers/usb/chipidea/bits.h | |||
@@ -13,6 +13,8 @@ | |||
13 | #ifndef __DRIVERS_USB_CHIPIDEA_BITS_H | 13 | #ifndef __DRIVERS_USB_CHIPIDEA_BITS_H |
14 | #define __DRIVERS_USB_CHIPIDEA_BITS_H | 14 | #define __DRIVERS_USB_CHIPIDEA_BITS_H |
15 | 15 | ||
16 | #include <linux/usb/ehci_def.h> | ||
17 | |||
16 | /* HCCPARAMS */ | 18 | /* HCCPARAMS */ |
17 | #define HCCPARAMS_LEN BIT(17) | 19 | #define HCCPARAMS_LEN BIT(17) |
18 | 20 | ||
@@ -70,11 +72,9 @@ | |||
70 | 72 | ||
71 | /* USBMODE */ | 73 | /* USBMODE */ |
72 | #define USBMODE_CM (0x03UL << 0) | 74 | #define USBMODE_CM (0x03UL << 0) |
73 | #define USBMODE_CM_IDLE (0x00UL << 0) | 75 | #define USBMODE_CM_DC (0x02UL << 0) |
74 | #define USBMODE_CM_DEVICE (0x02UL << 0) | ||
75 | #define USBMODE_CM_HOST (0x03UL << 0) | ||
76 | #define USBMODE_SLOM BIT(3) | 76 | #define USBMODE_SLOM BIT(3) |
77 | #define USBMODE_SDIS BIT(4) | 77 | #define USBMODE_CI_SDIS BIT(4) |
78 | 78 | ||
79 | /* ENDPTCTRL */ | 79 | /* ENDPTCTRL */ |
80 | #define ENDPTCTRL_RXS BIT(0) | 80 | #define ENDPTCTRL_RXS BIT(0) |