Use definitions from ehci.h instead.
Signed-off-by: Mateusz Kulikowski <mateusz.kulikowski@gmail.com>
Acked-by: Marek Vasut <marex@denx.de>
Tested-by: Simon Glass <sjg@chromium.org>
        unsigned int i;
 
        /* Command a reset of the USB Controller */
-       out_be32(&(ehci->usbcmd), EHCI_FSL_USBCMD_RST);
+       out_be32(&(ehci->usbcmd), CMD_RESET);
 
        /* Wait for the reset process to finish */
        for (i = 65535 ; i > 0 ; i--) {
                 * The host will set this bit to zero once the
                 * reset process is complete
                 */
-               if ((in_be32(&(ehci->usbcmd)) & EHCI_FSL_USBCMD_RST) == 0)
+               if ((in_be32(&(ehci->usbcmd)) & CMD_RESET) == 0)
                        return 0;
        }
 
 
 #define INTR_DATA_PULSING_EN   (0x1<<30)
 #define INTSTS_MASK            (0x00ff0000)
 
-/* USBCMD Bits of interest */
-#define EHCI_FSL_USBCMD_RST    (1 <<  1)
-#define EHCI_FSL_USBCMD_RS     (1 <<  0)
-
 #define  INTERRUPT_ENABLE_BITS_MASK  \
                (INTR_USB_ID_EN         | \
                INTR_1MS_TIMER_EN       | \