summaryrefslogtreecommitdiff
path: root/drivers/usb/chipidea/bits.h
diff options
context:
space:
mode:
authorAlexander Shishkin <alexander.shishkin@linux.intel.com>2012-05-11 17:25:53 +0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-05-11 16:54:54 -0700
commit758fc9860c19eceb56e5886a5225db623c521971 (patch)
tree81ecd0a568d9b484b6149d65dfa8cbce279620fe /drivers/usb/chipidea/bits.h
parentf7daaa2d6e84f7be1e302d7bcba4f5f11567eddb (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.h8
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 @@
#ifndef __DRIVERS_USB_CHIPIDEA_BITS_H
#define __DRIVERS_USB_CHIPIDEA_BITS_H
+#include <linux/usb/ehci_def.h>
+
/* HCCPARAMS */
#define HCCPARAMS_LEN BIT(17)
@@ -70,11 +72,9 @@
/* USBMODE */
#define USBMODE_CM (0x03UL << 0)
-#define USBMODE_CM_IDLE (0x00UL << 0)
-#define USBMODE_CM_DEVICE (0x02UL << 0)
-#define USBMODE_CM_HOST (0x03UL << 0)
+#define USBMODE_CM_DC (0x02UL << 0)
#define USBMODE_SLOM BIT(3)
-#define USBMODE_SDIS BIT(4)
+#define USBMODE_CI_SDIS BIT(4)
/* ENDPTCTRL */
#define ENDPTCTRL_RXS BIT(0)