Re: [PATCH v2 2/2] mfd: Add initial synology microp driver

From: Greg Kroah-Hartman

Date: Sun Mar 08 2026 - 14:57:08 EST


On Sun, Mar 08, 2026 at 06:41:20PM +0000, Markus Probst wrote:
> +kernel::module_serdev_device_driver! {
> + type: SynologyMicropDriver,
> + name: "synology_microp",
> + authors: ["Markus Probst <markus.probst@xxxxxxxxx>"],
> + description: "Synology Microp driver",
> + license: "GPL v2",
> + params: {
> + check_fan: i32 {
> + default: 1,
> + description: "Check for cpu fan failures",
> + },
> + },

This is not the 1990's, please do not add new module parameters for no
good reason. This should be dynamic (why would you NOT want to check
for cpu fan failures?) and per-device, not per-module.

thanks,

greg k-h