Commit 231bb9b4 authored by Benjamin Szőke's avatar Benjamin Szőke Committed by Danilo Krummrich
Browse files

drm/nouveau/i2c: rename aux.c and aux.h to auxch.c and auxch.h



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: default avatarBenjamin Szőke <egyszeregy@freemail.hu>
Reviewed-by: default avatarBen Skeggs <bskeggs@nvidia.com>
Signed-off-by: default avatarDanilo Krummrich <dakr@kernel.org>
Link: https://patchwork.freedesktop.org/patch/msgid/20240603091558.35672-1-egyszeregy@freemail.hu
parent bc41d57f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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
+1 −1
Original line number Diff line number Diff line
@@ -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 {
+1 −1
Original line number Diff line number Diff line
@@ -24,7 +24,7 @@

#include <linux/string_helpers.h>

#include "aux.h"
#include "auxch.h"
#include "pad.h"

static int
+1 −1
Original line number Diff line number Diff line
@@ -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;
Loading