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

Commit a716a026 authored by Dmitry Torokhov's avatar Dmitry Torokhov
Browse files

Input: psmouse - use i2c_client_type to locate i2c clients



Now that i2c_client_type structure is exported, we can use it, instead
of i2c_adapter_type, when looking for devices that are i2c clients.

Signed-off-by: default avatarDmitry Torokhov <dmitry.torokhov@gmail.com>
parent 165fe9c9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -99,7 +99,7 @@ static int psmouse_smbus_notifier_call(struct notifier_block *nb,
		break;

	case BUS_NOTIFY_REMOVED_DEVICE:
		if (dev->type != &i2c_adapter_type)
		if (dev->type == &i2c_client_type)
			psmouse_smbus_detach_i2c_client(to_i2c_client(dev));
		break;
	}