usb: r8a66597: Remove BE support
authorMarek Vasut <marek.vasut+renesas@gmail.com>
Sun, 11 Aug 2019 11:23:11 +0000 (13:23 +0200)
committerMarek Vasut <marex@denx.de>
Thu, 22 Aug 2019 16:23:36 +0000 (18:23 +0200)
While the USB controller can work both in LE and BE modes, there is
no user for the BE mode, so drop it. If there ever is a user for it,
it can be easily re-added back.

Signed-off-by: Marek Vasut <marek.vasut+renesas@gmail.com>
Cc: Chris Brandt <chris.brandt@renesas.com>
drivers/usb/host/r8a66597-hcd.c

index d144b57a61c8fdb83f40ed196258dbe12ba26ea8..2b9f8a150a13940dc041352103dbac39ddcb7cd0 100644 (file)
@@ -139,9 +139,9 @@ static int enable_controller(struct r8a66597 *r8a66597)
        for (port = 0; port < R8A66597_MAX_ROOT_HUB; port++)
                r8a66597_write(r8a66597, 0, get_intenb_reg(port));
 
-       r8a66597_bset(r8a66597, CONFIG_R8A66597_ENDIAN & BIGEND, CFIFOSEL);
-       r8a66597_bset(r8a66597, CONFIG_R8A66597_ENDIAN & BIGEND, D0FIFOSEL);
-       r8a66597_bset(r8a66597, CONFIG_R8A66597_ENDIAN & BIGEND, D1FIFOSEL);
+       r8a66597_bclr(r8a66597, BIGEND, CFIFOSEL);
+       r8a66597_bclr(r8a66597, BIGEND, D0FIFOSEL);
+       r8a66597_bclr(r8a66597, BIGEND, D1FIFOSEL);
        r8a66597_bset(r8a66597, TRNENSEL, SOFCFG);
 
        for (port = 0; port < R8A66597_MAX_ROOT_HUB; port++)