Message ID | 20240603091558.35672-1-egyszeregy@freemail.hu (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | drm/nouveau/i2c: rename aux.c and aux.h to auxch.c and auxch.h | expand |
2024. 06. 03. 11:15 keltezéssel, egyszeregy@freemail.hu írta: > From: Benjamin Szőke <egyszeregy@freemail.hu> > > The goal is to clean-up Linux repository from AUX file names, because > the use of such file names is prohibited on other operating systems > such as Windows, so the Linux repository cannot be cloned and > edited on them. > > Signed-off-by: Benjamin Szőke <egyszeregy@freemail.hu> > --- > drivers/gpu/drm/nouveau/nvkm/subdev/i2c/Kbuild | 2 +- > drivers/gpu/drm/nouveau/nvkm/subdev/i2c/anx9805.c | 2 +- > drivers/gpu/drm/nouveau/nvkm/subdev/i2c/{aux.c => auxch.c} | 2 +- > drivers/gpu/drm/nouveau/nvkm/subdev/i2c/{aux.h => auxch.h} | 0 > drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxg94.c | 2 +- > drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxgf119.c | 2 +- > drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxgm200.c | 2 +- > drivers/gpu/drm/nouveau/nvkm/subdev/i2c/base.c | 2 +- > drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padg94.c | 2 +- > drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padgf119.c | 2 +- > drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padgm200.c | 2 +- > 11 files changed, 10 insertions(+), 10 deletions(-) > rename drivers/gpu/drm/nouveau/nvkm/subdev/i2c/{aux.c => auxch.c} (99%) > rename drivers/gpu/drm/nouveau/nvkm/subdev/i2c/{aux.h => auxch.h} (100%) > > diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/Kbuild b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/Kbuild > index 819703913a00..2c551bdc9bc9 100644 > --- a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/Kbuild > +++ b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/Kbuild > @@ -25,7 +25,7 @@ nvkm-y += nvkm/subdev/i2c/busnv50.o > nvkm-y += nvkm/subdev/i2c/busgf119.o > nvkm-y += nvkm/subdev/i2c/bit.o > > -nvkm-y += nvkm/subdev/i2c/aux.o > +nvkm-y += nvkm/subdev/i2c/auxch.o > nvkm-y += nvkm/subdev/i2c/auxg94.o > nvkm-y += nvkm/subdev/i2c/auxgf119.o > nvkm-y += nvkm/subdev/i2c/auxgm200.o > diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/anx9805.c b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/anx9805.c > index dd391809fef7..6c76e5e14b75 100644 > --- a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/anx9805.c > +++ b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/anx9805.c > @@ -24,7 +24,7 @@ > #define anx9805_pad(p) container_of((p), struct anx9805_pad, base) > #define anx9805_bus(p) container_of((p), struct anx9805_bus, base) > #define anx9805_aux(p) container_of((p), struct anx9805_aux, base) > -#include "aux.h" > +#include "auxch.h" > #include "bus.h" > > struct anx9805_pad { > diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/aux.c b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxch.c > similarity index 99% > rename from drivers/gpu/drm/nouveau/nvkm/subdev/i2c/aux.c > rename to drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxch.c > index d063d0dc13c5..fafc634acbf6 100644 > --- a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/aux.c > +++ b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxch.c > @@ -24,7 +24,7 @@ > > #include <linux/string_helpers.h> > > -#include "aux.h" > +#include "auxch.h" > #include "pad.h" > > static int > diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/aux.h b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxch.h > similarity index 100% > rename from drivers/gpu/drm/nouveau/nvkm/subdev/i2c/aux.h > rename to drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxch.h > diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxg94.c b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxg94.c > index 47068f6f9c55..854bb4b5fdb4 100644 > --- a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxg94.c > +++ b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxg94.c > @@ -22,7 +22,7 @@ > * Authors: Ben Skeggs <bskeggs@redhat.com> > */ > #define g94_i2c_aux(p) container_of((p), struct g94_i2c_aux, base) > -#include "aux.h" > +#include "auxch.h" > > struct g94_i2c_aux { > struct nvkm_i2c_aux base; > diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxgf119.c b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxgf119.c > index dab40cd8fe3a..c17d5647cb99 100644 > --- a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxgf119.c > +++ b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxgf119.c > @@ -19,7 +19,7 @@ > * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR > * OTHER DEALINGS IN THE SOFTWARE. > */ > -#include "aux.h" > +#include "auxch.h" > > static const struct nvkm_i2c_aux_func > gf119_i2c_aux = { > diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxgm200.c b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxgm200.c > index 8bd1d442e465..3c5005e3b330 100644 > --- a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxgm200.c > +++ b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxgm200.c > @@ -22,7 +22,7 @@ > * Authors: Ben Skeggs <bskeggs@redhat.com> > */ > #define gm200_i2c_aux(p) container_of((p), struct gm200_i2c_aux, base) > -#include "aux.h" > +#include "auxch.h" > > struct gm200_i2c_aux { > struct nvkm_i2c_aux base; > diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/base.c b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/base.c > index 976539de4220..ab86e11e7780 100644 > --- a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/base.c > +++ b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/base.c > @@ -22,7 +22,7 @@ > * Authors: Ben Skeggs > */ > #include "priv.h" > -#include "aux.h" > +#include "auxch.h" > #include "bus.h" > #include "pad.h" > > diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padg94.c b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padg94.c > index 5904bc5f2d2a..cc26cd677917 100644 > --- a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padg94.c > +++ b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padg94.c > @@ -22,7 +22,7 @@ > * Authors: Ben Skeggs > */ > #include "pad.h" > -#include "aux.h" > +#include "auxch.h" > #include "bus.h" > > void > diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padgf119.c b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padgf119.c > index 3bc4d0310076..1797c6c65979 100644 > --- a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padgf119.c > +++ b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padgf119.c > @@ -22,7 +22,7 @@ > * Authors: Ben Skeggs > */ > #include "pad.h" > -#include "aux.h" > +#include "auxch.h" > #include "bus.h" > > static const struct nvkm_i2c_pad_func > diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padgm200.c b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padgm200.c > index 7d417f6a816e..5afc1bf8e798 100644 > --- a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padgm200.c > +++ b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padgm200.c > @@ -22,7 +22,7 @@ > * Authors: Ben Skeggs > */ > #include "pad.h" > -#include "aux.h" > +#include "auxch.h" > #include "bus.h" > > static void @Ben Skeggs When it will be merged? Your hints was done and ready in this renaming patch.
On 3/6/24 19:15, egyszeregy@freemail.hu wrote: > From: Benjamin Szőke <egyszeregy@freemail.hu> > > The goal is to clean-up Linux repository from AUX file names, because > the use of such file names is prohibited on other operating systems > such as Windows, so the Linux repository cannot be cloned and > edited on them. > > Signed-off-by: Benjamin Szőke <egyszeregy@freemail.hu> Reviewed-by: Ben Skeggs <bskeggs@redhat.com> > --- > drivers/gpu/drm/nouveau/nvkm/subdev/i2c/Kbuild | 2 +- > drivers/gpu/drm/nouveau/nvkm/subdev/i2c/anx9805.c | 2 +- > drivers/gpu/drm/nouveau/nvkm/subdev/i2c/{aux.c => auxch.c} | 2 +- > drivers/gpu/drm/nouveau/nvkm/subdev/i2c/{aux.h => auxch.h} | 0 > drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxg94.c | 2 +- > drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxgf119.c | 2 +- > drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxgm200.c | 2 +- > drivers/gpu/drm/nouveau/nvkm/subdev/i2c/base.c | 2 +- > drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padg94.c | 2 +- > drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padgf119.c | 2 +- > drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padgm200.c | 2 +- > 11 files changed, 10 insertions(+), 10 deletions(-) > rename drivers/gpu/drm/nouveau/nvkm/subdev/i2c/{aux.c => auxch.c} (99%) > rename drivers/gpu/drm/nouveau/nvkm/subdev/i2c/{aux.h => auxch.h} (100%) > > diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/Kbuild b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/Kbuild > index 819703913a00..2c551bdc9bc9 100644 > --- a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/Kbuild > +++ b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/Kbuild > @@ -25,7 +25,7 @@ nvkm-y += nvkm/subdev/i2c/busnv50.o > nvkm-y += nvkm/subdev/i2c/busgf119.o > nvkm-y += nvkm/subdev/i2c/bit.o > > -nvkm-y += nvkm/subdev/i2c/aux.o > +nvkm-y += nvkm/subdev/i2c/auxch.o > nvkm-y += nvkm/subdev/i2c/auxg94.o > nvkm-y += nvkm/subdev/i2c/auxgf119.o > nvkm-y += nvkm/subdev/i2c/auxgm200.o > diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/anx9805.c b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/anx9805.c > index dd391809fef7..6c76e5e14b75 100644 > --- a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/anx9805.c > +++ b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/anx9805.c > @@ -24,7 +24,7 @@ > #define anx9805_pad(p) container_of((p), struct anx9805_pad, base) > #define anx9805_bus(p) container_of((p), struct anx9805_bus, base) > #define anx9805_aux(p) container_of((p), struct anx9805_aux, base) > -#include "aux.h" > +#include "auxch.h" > #include "bus.h" > > struct anx9805_pad { > diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/aux.c b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxch.c > similarity index 99% > rename from drivers/gpu/drm/nouveau/nvkm/subdev/i2c/aux.c > rename to drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxch.c > index d063d0dc13c5..fafc634acbf6 100644 > --- a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/aux.c > +++ b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxch.c > @@ -24,7 +24,7 @@ > > #include <linux/string_helpers.h> > > -#include "aux.h" > +#include "auxch.h" > #include "pad.h" > > static int > diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/aux.h b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxch.h > similarity index 100% > rename from drivers/gpu/drm/nouveau/nvkm/subdev/i2c/aux.h > rename to drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxch.h > diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxg94.c b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxg94.c > index 47068f6f9c55..854bb4b5fdb4 100644 > --- a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxg94.c > +++ b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxg94.c > @@ -22,7 +22,7 @@ > * Authors: Ben Skeggs <bskeggs@redhat.com> > */ > #define g94_i2c_aux(p) container_of((p), struct g94_i2c_aux, base) > -#include "aux.h" > +#include "auxch.h" > > struct g94_i2c_aux { > struct nvkm_i2c_aux base; > diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxgf119.c b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxgf119.c > index dab40cd8fe3a..c17d5647cb99 100644 > --- a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxgf119.c > +++ b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxgf119.c > @@ -19,7 +19,7 @@ > * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR > * OTHER DEALINGS IN THE SOFTWARE. > */ > -#include "aux.h" > +#include "auxch.h" > > static const struct nvkm_i2c_aux_func > gf119_i2c_aux = { > diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxgm200.c b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxgm200.c > index 8bd1d442e465..3c5005e3b330 100644 > --- a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxgm200.c > +++ b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxgm200.c > @@ -22,7 +22,7 @@ > * Authors: Ben Skeggs <bskeggs@redhat.com> > */ > #define gm200_i2c_aux(p) container_of((p), struct gm200_i2c_aux, base) > -#include "aux.h" > +#include "auxch.h" > > struct gm200_i2c_aux { > struct nvkm_i2c_aux base; > diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/base.c b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/base.c > index 976539de4220..ab86e11e7780 100644 > --- a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/base.c > +++ b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/base.c > @@ -22,7 +22,7 @@ > * Authors: Ben Skeggs > */ > #include "priv.h" > -#include "aux.h" > +#include "auxch.h" > #include "bus.h" > #include "pad.h" > > diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padg94.c b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padg94.c > index 5904bc5f2d2a..cc26cd677917 100644 > --- a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padg94.c > +++ b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padg94.c > @@ -22,7 +22,7 @@ > * Authors: Ben Skeggs > */ > #include "pad.h" > -#include "aux.h" > +#include "auxch.h" > #include "bus.h" > > void > diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padgf119.c b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padgf119.c > index 3bc4d0310076..1797c6c65979 100644 > --- a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padgf119.c > +++ b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padgf119.c > @@ -22,7 +22,7 @@ > * Authors: Ben Skeggs > */ > #include "pad.h" > -#include "aux.h" > +#include "auxch.h" > #include "bus.h" > > static const struct nvkm_i2c_pad_func > diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padgm200.c b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padgm200.c > index 7d417f6a816e..5afc1bf8e798 100644 > --- a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padgm200.c > +++ b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padgm200.c > @@ -22,7 +22,7 @@ > * Authors: Ben Skeggs > */ > #include "pad.h" > -#include "aux.h" > +#include "auxch.h" > #include "bus.h" > > static void
On 6/3/24 11:15 AM, egyszeregy@freemail.hu wrote: > From: Benjamin Szőke <egyszeregy@freemail.hu> > > The goal is to clean-up Linux repository from AUX file names, because > the use of such file names is prohibited on other operating systems > such as Windows, so the Linux repository cannot be cloned and > edited on them. > > Signed-off-by: Benjamin Szőke <egyszeregy@freemail.hu> Applied to drm-misc-next, thanks!
Hi - how did you send this message? This patch comes out looking quite strange on my machine, perhaps you don't have the encoding set to UTF-8 or aren't using git send-email? On Mon, 2024-09-23 at 22:18 +0200, Szőke Benjamin wrote: > s=20181004; d=freemail.hu; > h=Message-ID:Date:MIME-Version:Subject:To:References:From:In-Reply-To:Content-Type:Content-Transfer-Encoding; > l=6727; bh=sJL9AOsUJH2ovHr5PYMU/rHzKoMeXVYsbJRkD0TaT5E=; > b=qY1DL1nlKnhWn0mpbbrefaus7g0fXuyQgL10k8YLW7EoFYdwaqOeDl6O+oQvVNmk > SvFiAJ5gdZeuP+2ZqTy3J1GOrOWP4HE77uQ4mJh9vyF3orZv2QtyIksudyXdHHiWwSS > IV7i4YkfUElv4+pFlUQ+hMRRXAOiqU/RVo1xBF0MBe/XGM1dt2UOj96u6lDp/vR7KP4 > Tc7OCbj3h2I+07VEElEunHRpDFgZer+RV3SBLWBjiYBFtuUj3+iMnO/z36DlNJyHAj5 > fySgG1IiRjIheKlzc5H7ikpMRfchALaeD+t1ayA7CERE4zDvIcBse8S5Oxkxvg7zwIW > Elv65cjloA== > Content-Transfer-Encoding: quoted-printable > > 2024. 06. 03. 11:15 keltez=C3=A9ssel, egyszeregy@freemail.hu =C3=ADrta: > > From: Benjamin Sz=C5=91ke <egyszeregy@freemail.hu> > > =20 > > The goal is to clean-up Linux repository from AUX file names, because > > the use of such file names is prohibited on other operating systems > > such as Windows, so the Linux repository cannot be cloned and > > edited on them. > > =20 > > Signed-off-by: Benjamin Sz=C5=91ke <egyszeregy@freemail.hu> > > --- > > drivers/gpu/drm/nouveau/nvkm/subdev/i2c/Kbuild | 2 +- > > drivers/gpu/drm/nouveau/nvkm/subdev/i2c/anx9805.c | 2 +- > > drivers/gpu/drm/nouveau/nvkm/subdev/i2c/{aux.c =3D> auxch.c} | 2 +- > > drivers/gpu/drm/nouveau/nvkm/subdev/i2c/{aux.h =3D> auxch.h} | 0 > > drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxg94.c | 2 +- > > drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxgf119.c | 2 +- > > drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxgm200.c | 2 +- > > drivers/gpu/drm/nouveau/nvkm/subdev/i2c/base.c | 2 +- > > drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padg94.c | 2 +- > > drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padgf119.c | 2 +- > > drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padgm200.c | 2 +- > > 11 files changed, 10 insertions(+), 10 deletions(-) > > rename drivers/gpu/drm/nouveau/nvkm/subdev/i2c/{aux.c =3D> auxch.c} (= > 99%) > > rename drivers/gpu/drm/nouveau/nvkm/subdev/i2c/{aux.h =3D> auxch.h} (= > 100%) > > =20 > > diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/Kbuild b/drivers/g= > pu/drm/nouveau/nvkm/subdev/i2c/Kbuild > > index 819703913a00..2c551bdc9bc9 100644 > > --- a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/Kbuild > > +++ b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/Kbuild > > @@ -25,7 +25,7 @@ nvkm-y +=3D nvkm/subdev/i2c/busnv50.o > > nvkm-y +=3D nvkm/subdev/i2c/busgf119.o > > nvkm-y +=3D nvkm/subdev/i2c/bit.o > > =20 > > -nvkm-y +=3D nvkm/subdev/i2c/aux.o > > +nvkm-y +=3D nvkm/subdev/i2c/auxch.o > > nvkm-y +=3D nvkm/subdev/i2c/auxg94.o > > nvkm-y +=3D nvkm/subdev/i2c/auxgf119.o > > nvkm-y +=3D nvkm/subdev/i2c/auxgm200.o > > diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/anx9805.c b/driver= > s/gpu/drm/nouveau/nvkm/subdev/i2c/anx9805.c > > index dd391809fef7..6c76e5e14b75 100644 > > --- a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/anx9805.c > > +++ b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/anx9805.c > > @@ -24,7 +24,7 @@ > > #define anx9805_pad(p) container_of((p), struct anx9805_pad, base) > > #define anx9805_bus(p) container_of((p), struct anx9805_bus, base) > > #define anx9805_aux(p) container_of((p), struct anx9805_aux, base) > > -#include "aux.h" > > +#include "auxch.h" > > #include "bus.h" > > =20 > > struct anx9805_pad { > > diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/aux.c b/drivers/gp= > u/drm/nouveau/nvkm/subdev/i2c/auxch.c > > similarity index 99% > > rename from drivers/gpu/drm/nouveau/nvkm/subdev/i2c/aux.c > > rename to drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxch.c > > index d063d0dc13c5..fafc634acbf6 100644 > > --- a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/aux.c > > +++ b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxch.c > > @@ -24,7 +24,7 @@ > > =20 > > #include <linux/string_helpers.h> > > =20 > > -#include "aux.h" > > +#include "auxch.h" > > #include "pad.h" > > =20 > > static int > > diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/aux.h b/drivers/gp= > u/drm/nouveau/nvkm/subdev/i2c/auxch.h > > similarity index 100% > > rename from drivers/gpu/drm/nouveau/nvkm/subdev/i2c/aux.h > > rename to drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxch.h > > diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxg94.c b/drivers= > /gpu/drm/nouveau/nvkm/subdev/i2c/auxg94.c > > index 47068f6f9c55..854bb4b5fdb4 100644 > > --- a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxg94.c > > +++ b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxg94.c > > @@ -22,7 +22,7 @@ > > * Authors: Ben Skeggs <bskeggs@redhat.com> > > */ > > #define g94_i2c_aux(p) container_of((p), struct g94_i2c_aux, base) > > -#include "aux.h" > > +#include "auxch.h" > > =20 > > struct g94_i2c_aux { > > struct nvkm_i2c_aux base; > > diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxgf119.c b/drive= > rs/gpu/drm/nouveau/nvkm/subdev/i2c/auxgf119.c > > index dab40cd8fe3a..c17d5647cb99 100644 > > --- a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxgf119.c > > +++ b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxgf119.c > > @@ -19,7 +19,7 @@ > > * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE= > OR > > * OTHER DEALINGS IN THE SOFTWARE. > > */ > > -#include "aux.h" > > +#include "auxch.h" > > =20 > > static const struct nvkm_i2c_aux_func > > gf119_i2c_aux =3D { > > diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxgm200.c b/drive= > rs/gpu/drm/nouveau/nvkm/subdev/i2c/auxgm200.c > > index 8bd1d442e465..3c5005e3b330 100644 > > --- a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxgm200.c > > +++ b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxgm200.c > > @@ -22,7 +22,7 @@ > > * Authors: Ben Skeggs <bskeggs@redhat.com> > > */ > > #define gm200_i2c_aux(p) container_of((p), struct gm200_i2c_aux, base= > ) > > -#include "aux.h" > > +#include "auxch.h" > > =20 > > struct gm200_i2c_aux { > > struct nvkm_i2c_aux base; > > diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/base.c b/drivers/g= > pu/drm/nouveau/nvkm/subdev/i2c/base.c > > index 976539de4220..ab86e11e7780 100644 > > --- a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/base.c > > +++ b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/base.c > > @@ -22,7 +22,7 @@ > > * Authors: Ben Skeggs > > */ > > #include "priv.h" > > -#include "aux.h" > > +#include "auxch.h" > > #include "bus.h" > > #include "pad.h" > > =20 > > diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padg94.c b/drivers= > /gpu/drm/nouveau/nvkm/subdev/i2c/padg94.c > > index 5904bc5f2d2a..cc26cd677917 100644 > > --- a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padg94.c > > +++ b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padg94.c > > @@ -22,7 +22,7 @@ > > * Authors: Ben Skeggs > > */ > > #include "pad.h" > > -#include "aux.h" > > +#include "auxch.h" > > #include "bus.h" > > =20 > > void > > diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padgf119.c b/drive= > rs/gpu/drm/nouveau/nvkm/subdev/i2c/padgf119.c > > index 3bc4d0310076..1797c6c65979 100644 > > --- a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padgf119.c > > +++ b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padgf119.c > > @@ -22,7 +22,7 @@ > > * Authors: Ben Skeggs > > */ > > #include "pad.h" > > -#include "aux.h" > > +#include "auxch.h" > > #include "bus.h" > > =20 > > static const struct nvkm_i2c_pad_func > > diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padgm200.c b/drive= > rs/gpu/drm/nouveau/nvkm/subdev/i2c/padgm200.c > > index 7d417f6a816e..5afc1bf8e798 100644 > > --- a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padgm200.c > > +++ b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padgm200.c > > @@ -22,7 +22,7 @@ > > * Authors: Ben Skeggs > > */ > > #include "pad.h" > > -#include "aux.h" > > +#include "auxch.h" > > #include "bus.h" > > =20 > > static void > > @Ben Skeggs > When it will be merged? Your hints was done and ready in this renaming pa= > tch. >
2024. 10. 10. 23:17 keltezéssel, Lyude Paul írta: > Hi - how did you send this message? This patch comes out looking quite strange > on my machine, perhaps you don't have the encoding set to UTF-8 or aren't > using git send-email? > > On Mon, 2024-09-23 at 22:18 +0200, Szőke Benjamin wrote: >> s=20181004; d=freemail.hu; >> h=Message-ID:Date:MIME-Version:Subject:To:References:From:In-Reply-To:Content-Type:Content-Transfer-Encoding; >> l=6727; bh=sJL9AOsUJH2ovHr5PYMU/rHzKoMeXVYsbJRkD0TaT5E=; >> b=qY1DL1nlKnhWn0mpbbrefaus7g0fXuyQgL10k8YLW7EoFYdwaqOeDl6O+oQvVNmk >> SvFiAJ5gdZeuP+2ZqTy3J1GOrOWP4HE77uQ4mJh9vyF3orZv2QtyIksudyXdHHiWwSS >> IV7i4YkfUElv4+pFlUQ+hMRRXAOiqU/RVo1xBF0MBe/XGM1dt2UOj96u6lDp/vR7KP4 >> Tc7OCbj3h2I+07VEElEunHRpDFgZer+RV3SBLWBjiYBFtuUj3+iMnO/z36DlNJyHAj5 >> fySgG1IiRjIheKlzc5H7ikpMRfchALaeD+t1ayA7CERE4zDvIcBse8S5Oxkxvg7zwIW >> Elv65cjloA== >> Content-Transfer-Encoding: quoted-printable >> >> 2024. 06. 03. 11:15 keltez=C3=A9ssel, egyszeregy@freemail.hu =C3=ADrta: >>> From: Benjamin Sz=C5=91ke <egyszeregy@freemail.hu> >>> =20 >>> The goal is to clean-up Linux repository from AUX file names, because >>> the use of such file names is prohibited on other operating systems >>> such as Windows, so the Linux repository cannot be cloned and >>> edited on them. >>> =20 >>> Signed-off-by: Benjamin Sz=C5=91ke <egyszeregy@freemail.hu> >>> --- >>> drivers/gpu/drm/nouveau/nvkm/subdev/i2c/Kbuild | 2 +- >>> drivers/gpu/drm/nouveau/nvkm/subdev/i2c/anx9805.c | 2 +- >>> drivers/gpu/drm/nouveau/nvkm/subdev/i2c/{aux.c =3D> auxch.c} | 2 +- >>> drivers/gpu/drm/nouveau/nvkm/subdev/i2c/{aux.h =3D> auxch.h} | 0 >>> drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxg94.c | 2 +- >>> drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxgf119.c | 2 +- >>> drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxgm200.c | 2 +- >>> drivers/gpu/drm/nouveau/nvkm/subdev/i2c/base.c | 2 +- >>> drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padg94.c | 2 +- >>> drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padgf119.c | 2 +- >>> drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padgm200.c | 2 +- >>> 11 files changed, 10 insertions(+), 10 deletions(-) >>> rename drivers/gpu/drm/nouveau/nvkm/subdev/i2c/{aux.c =3D> auxch.c} (= >> 99%) >>> rename drivers/gpu/drm/nouveau/nvkm/subdev/i2c/{aux.h =3D> auxch.h} (= >> 100%) >>> =20 >>> diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/Kbuild b/drivers/g= >> pu/drm/nouveau/nvkm/subdev/i2c/Kbuild >>> index 819703913a00..2c551bdc9bc9 100644 >>> --- a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/Kbuild >>> +++ b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/Kbuild >>> @@ -25,7 +25,7 @@ nvkm-y +=3D nvkm/subdev/i2c/busnv50.o >>> nvkm-y +=3D nvkm/subdev/i2c/busgf119.o >>> nvkm-y +=3D nvkm/subdev/i2c/bit.o >>> =20 >>> -nvkm-y +=3D nvkm/subdev/i2c/aux.o >>> +nvkm-y +=3D nvkm/subdev/i2c/auxch.o >>> nvkm-y +=3D nvkm/subdev/i2c/auxg94.o >>> nvkm-y +=3D nvkm/subdev/i2c/auxgf119.o >>> nvkm-y +=3D nvkm/subdev/i2c/auxgm200.o >>> diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/anx9805.c b/driver= >> s/gpu/drm/nouveau/nvkm/subdev/i2c/anx9805.c >>> index dd391809fef7..6c76e5e14b75 100644 >>> --- a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/anx9805.c >>> +++ b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/anx9805.c >>> @@ -24,7 +24,7 @@ >>> #define anx9805_pad(p) container_of((p), struct anx9805_pad, base) >>> #define anx9805_bus(p) container_of((p), struct anx9805_bus, base) >>> #define anx9805_aux(p) container_of((p), struct anx9805_aux, base) >>> -#include "aux.h" >>> +#include "auxch.h" >>> #include "bus.h" >>> =20 >>> struct anx9805_pad { >>> diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/aux.c b/drivers/gp= >> u/drm/nouveau/nvkm/subdev/i2c/auxch.c >>> similarity index 99% >>> rename from drivers/gpu/drm/nouveau/nvkm/subdev/i2c/aux.c >>> rename to drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxch.c >>> index d063d0dc13c5..fafc634acbf6 100644 >>> --- a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/aux.c >>> +++ b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxch.c >>> @@ -24,7 +24,7 @@ >>> =20 >>> #include <linux/string_helpers.h> >>> =20 >>> -#include "aux.h" >>> +#include "auxch.h" >>> #include "pad.h" >>> =20 >>> static int >>> diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/aux.h b/drivers/gp= >> u/drm/nouveau/nvkm/subdev/i2c/auxch.h >>> similarity index 100% >>> rename from drivers/gpu/drm/nouveau/nvkm/subdev/i2c/aux.h >>> rename to drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxch.h >>> diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxg94.c b/drivers= >> /gpu/drm/nouveau/nvkm/subdev/i2c/auxg94.c >>> index 47068f6f9c55..854bb4b5fdb4 100644 >>> --- a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxg94.c >>> +++ b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxg94.c >>> @@ -22,7 +22,7 @@ >>> * Authors: Ben Skeggs <bskeggs@redhat.com> >>> */ >>> #define g94_i2c_aux(p) container_of((p), struct g94_i2c_aux, base) >>> -#include "aux.h" >>> +#include "auxch.h" >>> =20 >>> struct g94_i2c_aux { >>> struct nvkm_i2c_aux base; >>> diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxgf119.c b/drive= >> rs/gpu/drm/nouveau/nvkm/subdev/i2c/auxgf119.c >>> index dab40cd8fe3a..c17d5647cb99 100644 >>> --- a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxgf119.c >>> +++ b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxgf119.c >>> @@ -19,7 +19,7 @@ >>> * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE= >> OR >>> * OTHER DEALINGS IN THE SOFTWARE. >>> */ >>> -#include "aux.h" >>> +#include "auxch.h" >>> =20 >>> static const struct nvkm_i2c_aux_func >>> gf119_i2c_aux =3D { >>> diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxgm200.c b/drive= >> rs/gpu/drm/nouveau/nvkm/subdev/i2c/auxgm200.c >>> index 8bd1d442e465..3c5005e3b330 100644 >>> --- a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxgm200.c >>> +++ b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxgm200.c >>> @@ -22,7 +22,7 @@ >>> * Authors: Ben Skeggs <bskeggs@redhat.com> >>> */ >>> #define gm200_i2c_aux(p) container_of((p), struct gm200_i2c_aux, base= >> ) >>> -#include "aux.h" >>> +#include "auxch.h" >>> =20 >>> struct gm200_i2c_aux { >>> struct nvkm_i2c_aux base; >>> diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/base.c b/drivers/g= >> pu/drm/nouveau/nvkm/subdev/i2c/base.c >>> index 976539de4220..ab86e11e7780 100644 >>> --- a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/base.c >>> +++ b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/base.c >>> @@ -22,7 +22,7 @@ >>> * Authors: Ben Skeggs >>> */ >>> #include "priv.h" >>> -#include "aux.h" >>> +#include "auxch.h" >>> #include "bus.h" >>> #include "pad.h" >>> =20 >>> diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padg94.c b/drivers= >> /gpu/drm/nouveau/nvkm/subdev/i2c/padg94.c >>> index 5904bc5f2d2a..cc26cd677917 100644 >>> --- a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padg94.c >>> +++ b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padg94.c >>> @@ -22,7 +22,7 @@ >>> * Authors: Ben Skeggs >>> */ >>> #include "pad.h" >>> -#include "aux.h" >>> +#include "auxch.h" >>> #include "bus.h" >>> =20 >>> void >>> diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padgf119.c b/drive= >> rs/gpu/drm/nouveau/nvkm/subdev/i2c/padgf119.c >>> index 3bc4d0310076..1797c6c65979 100644 >>> --- a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padgf119.c >>> +++ b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padgf119.c >>> @@ -22,7 +22,7 @@ >>> * Authors: Ben Skeggs >>> */ >>> #include "pad.h" >>> -#include "aux.h" >>> +#include "auxch.h" >>> #include "bus.h" >>> =20 >>> static const struct nvkm_i2c_pad_func >>> diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padgm200.c b/drive= >> rs/gpu/drm/nouveau/nvkm/subdev/i2c/padgm200.c >>> index 7d417f6a816e..5afc1bf8e798 100644 >>> --- a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padgm200.c >>> +++ b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padgm200.c >>> @@ -22,7 +22,7 @@ >>> * Authors: Ben Skeggs >>> */ >>> #include "pad.h" >>> -#include "aux.h" >>> +#include "auxch.h" >>> #include "bus.h" >>> =20 >>> static void >> >> @Ben Skeggs >> When it will be merged? Your hints was done and ready in this renaming pa= >> tch. >> > It was sent via git send-email and it used UTF-8 in default. In the patch website there is no any problem about encoding looks good, please check your mailing client. https://lore.kernel.org/all/4fbfe84b-c092-4648-819f-4368add9ec4a@nvidia.com/T/
diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/Kbuild b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/Kbuild index 819703913a00..2c551bdc9bc9 100644 --- a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/Kbuild +++ b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/Kbuild @@ -25,7 +25,7 @@ nvkm-y += nvkm/subdev/i2c/busnv50.o nvkm-y += nvkm/subdev/i2c/busgf119.o nvkm-y += nvkm/subdev/i2c/bit.o -nvkm-y += nvkm/subdev/i2c/aux.o +nvkm-y += nvkm/subdev/i2c/auxch.o nvkm-y += nvkm/subdev/i2c/auxg94.o nvkm-y += nvkm/subdev/i2c/auxgf119.o nvkm-y += nvkm/subdev/i2c/auxgm200.o diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/anx9805.c b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/anx9805.c index dd391809fef7..6c76e5e14b75 100644 --- a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/anx9805.c +++ b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/anx9805.c @@ -24,7 +24,7 @@ #define anx9805_pad(p) container_of((p), struct anx9805_pad, base) #define anx9805_bus(p) container_of((p), struct anx9805_bus, base) #define anx9805_aux(p) container_of((p), struct anx9805_aux, base) -#include "aux.h" +#include "auxch.h" #include "bus.h" struct anx9805_pad { diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/aux.c b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxch.c similarity index 99% rename from drivers/gpu/drm/nouveau/nvkm/subdev/i2c/aux.c rename to drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxch.c index d063d0dc13c5..fafc634acbf6 100644 --- a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/aux.c +++ b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxch.c @@ -24,7 +24,7 @@ #include <linux/string_helpers.h> -#include "aux.h" +#include "auxch.h" #include "pad.h" static int diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/aux.h b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxch.h similarity index 100% rename from drivers/gpu/drm/nouveau/nvkm/subdev/i2c/aux.h rename to drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxch.h diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxg94.c b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxg94.c index 47068f6f9c55..854bb4b5fdb4 100644 --- a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxg94.c +++ b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxg94.c @@ -22,7 +22,7 @@ * Authors: Ben Skeggs <bskeggs@redhat.com> */ #define g94_i2c_aux(p) container_of((p), struct g94_i2c_aux, base) -#include "aux.h" +#include "auxch.h" struct g94_i2c_aux { struct nvkm_i2c_aux base; diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxgf119.c b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxgf119.c index dab40cd8fe3a..c17d5647cb99 100644 --- a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxgf119.c +++ b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxgf119.c @@ -19,7 +19,7 @@ * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR * OTHER DEALINGS IN THE SOFTWARE. */ -#include "aux.h" +#include "auxch.h" static const struct nvkm_i2c_aux_func gf119_i2c_aux = { diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxgm200.c b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxgm200.c index 8bd1d442e465..3c5005e3b330 100644 --- a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxgm200.c +++ b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxgm200.c @@ -22,7 +22,7 @@ * Authors: Ben Skeggs <bskeggs@redhat.com> */ #define gm200_i2c_aux(p) container_of((p), struct gm200_i2c_aux, base) -#include "aux.h" +#include "auxch.h" struct gm200_i2c_aux { struct nvkm_i2c_aux base; diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/base.c b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/base.c index 976539de4220..ab86e11e7780 100644 --- a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/base.c +++ b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/base.c @@ -22,7 +22,7 @@ * Authors: Ben Skeggs */ #include "priv.h" -#include "aux.h" +#include "auxch.h" #include "bus.h" #include "pad.h" diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padg94.c b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padg94.c index 5904bc5f2d2a..cc26cd677917 100644 --- a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padg94.c +++ b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padg94.c @@ -22,7 +22,7 @@ * Authors: Ben Skeggs */ #include "pad.h" -#include "aux.h" +#include "auxch.h" #include "bus.h" void diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padgf119.c b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padgf119.c index 3bc4d0310076..1797c6c65979 100644 --- a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padgf119.c +++ b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padgf119.c @@ -22,7 +22,7 @@ * Authors: Ben Skeggs */ #include "pad.h" -#include "aux.h" +#include "auxch.h" #include "bus.h" static const struct nvkm_i2c_pad_func diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padgm200.c b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padgm200.c index 7d417f6a816e..5afc1bf8e798 100644 --- a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padgm200.c +++ b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padgm200.c @@ -22,7 +22,7 @@ * Authors: Ben Skeggs */ #include "pad.h" -#include "aux.h" +#include "auxch.h" #include "bus.h" static void