clocksource/drivers/sh_tmu: Mark driver as non-removable
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Tue, 7 Feb 2023 19:36:14 +0000 (20:36 +0100)
committerDaniel Lezcano <daniel.lezcano@linaro.org>
Mon, 13 Feb 2023 12:10:17 +0000 (13:10 +0100)
commitd8c695d310a8607fd1d6a2750368467c4e0cef6a
treeef780d339e26b7f51464a0db122f40a24f6c7cab
parent225b9596cb0227c1c1b1e4a836dad43595c3e61a
clocksource/drivers/sh_tmu: 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_tmu 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>
Link: https://lore.kernel.org/r/20230207193614.472060-1-u.kleine-koenig@pengutronix.de
Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
drivers/clocksource/sh_tmu.c