clocksource/drivers/sh_mtu2: Mark driver as non-removable
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Mon, 13 Mar 2023 07:54:26 +0000 (08:54 +0100)
committerDaniel Lezcano <daniel.lezcano@linaro.org>
Mon, 24 Apr 2023 14:56:13 +0000 (16:56 +0200)
commit78012e3880a62e0eb130a0b5a10230162ad42a06
treedba0d32d6a2ed810103b4a2d101c925e3d34d764
parent0fabf9f3a0c1ca44e01c5c4dccacfe69143413c5
clocksource/drivers/sh_mtu2: Mark driver as non-removable

The comment in the remove callback suggests that the driver is not
supposed to be unbound. However returning an error code in the remove
callback doesn't accomplish that. Instead set the suppress_bind_attrs
property (which makes it impossible to unbind the driver via sysfs).
The only remaining way to unbind a sh_tmu2 device would be module
unloading, but that doesn't apply here, as the driver cannot be built as
a module.

Also drop the useless remove callback.

Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
Link: https://lore.kernel.org/r/20230313075430.2730803-2-u.kleine-koenig@pengutronix.de
drivers/clocksource/sh_mtu2.c