On Mon, May 10, 2021 at 12:21 AM Linus Walleij <linus.walleij@xxxxxxxxxx> wrote: > This adds a new PCI controller driver for the Intel IXP4xx > (IX425, IXP435 etc), based on the XScale microarchitecture. Bjorn, how do you feel about this driver? I want to get it into ARM SoC along with the other refactorings soon, so if it needs rewrites it'd be great to know. (Or to get an ACK.) I changed one thing since v3: > +#ifdef __ARMEB__ > + val |= (IXP4XX_PCI_CSR_PDS | IXP4XX_PCI_CSR_ADS); > +#endif This now looks like this: + if (IS_ENABLED(CONFIG_CPU_BIG_ENDIAN)) + val |= (IXP4XX_PCI_CSR_PDS | IXP4XX_PCI_CSR_ADS); Yours, Linus Walleij