Re: [PATCH v1 1/3] gpio: tegra: Use generic readl_relaxed/writel_relaxed accessors

2019-12-19 Thread Dmitry Osipenko
19.12.2019 18:57, Ben Dooks пишет: > On 19/12/2019 11:01, Bartosz Golaszewski wrote: >> niedz., 15 gru 2019 o 19:31 Dmitry Osipenko >> napisał(a): >>> >>> There is no point in using old-style raw accessors, the generic >>> accessors >>> do the same thing and also take into account CPU endianness.

Re: [PATCH v1 1/3] gpio: tegra: Use generic readl_relaxed/writel_relaxed accessors

2019-12-19 Thread Ben Dooks
On 19/12/2019 11:01, Bartosz Golaszewski wrote: niedz., 15 gru 2019 o 19:31 Dmitry Osipenko napisał(a): There is no point in using old-style raw accessors, the generic accessors do the same thing and also take into account CPU endianness. Tegra SoCs do not support big-endian mode in the upstre

Re: [PATCH v1 1/3] gpio: tegra: Use generic readl_relaxed/writel_relaxed accessors

2019-12-19 Thread Dmitry Osipenko
19.12.2019 14:01, Bartosz Golaszewski пишет: > niedz., 15 gru 2019 o 19:31 Dmitry Osipenko napisał(a): >> >> There is no point in using old-style raw accessors, the generic accessors >> do the same thing and also take into account CPU endianness. Tegra SoCs do >> not support big-endian mode in the

Re: [PATCH v1 1/3] gpio: tegra: Use generic readl_relaxed/writel_relaxed accessors

2019-12-19 Thread Bartosz Golaszewski
niedz., 15 gru 2019 o 19:31 Dmitry Osipenko napisał(a): > > There is no point in using old-style raw accessors, the generic accessors > do the same thing and also take into account CPU endianness. Tegra SoCs do > not support big-endian mode in the upstream kernel, but let's switch away > from the

[PATCH v1 1/3] gpio: tegra: Use generic readl_relaxed/writel_relaxed accessors

2019-12-15 Thread Dmitry Osipenko
There is no point in using old-style raw accessors, the generic accessors do the same thing and also take into account CPU endianness. Tegra SoCs do not support big-endian mode in the upstream kernel, but let's switch away from the outdated things anyway, just to keep code up-to-date. Signed-off-b