Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1249ac59 authored by Ben Skeggs's avatar Ben Skeggs
Browse files

drm/nouveau/i2c: fix typo when checking nvio i2c port validity

parent cee59f15
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -292,7 +292,7 @@ nouveau_i2c_ctor(struct nouveau_object *parent, struct nouveau_object *engine,
		case DCB_I2C_NVIO_BIT:
			port->drive = info.drive & 0x0f;
			if (device->card_type < NV_D0) {
				if (info.drive >= ARRAY_SIZE(nv50_i2c_port))
				if (port->drive >= ARRAY_SIZE(nv50_i2c_port))
					break;
				port->drive = nv50_i2c_port[port->drive];
				port->sense = port->drive;