From: Damien Le Moal Date: Thu, 19 Jun 2025 03:59:46 +0000 (+0900) Subject: ata: ahci: Clarify mobile_lpm_policy description X-Git-Tag: block-6.17-20250808~40^2~23 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=3a382b9b13aaa02af0f5b194cce2825fe78f4f51;p=linux-block.git ata: ahci: Clarify mobile_lpm_policy description Despite its name, the mobile_lpm_policy module parameter defines the default LPM policy to use for an AHCI adapter for all chipsets, including desktop and server chipsets. Clarify this point in the parameter description. No functional changes. Signed-off-by: Damien Le Moal Reviewed-by: Hannes Reinecke Reviewed-by: Niklas Cassel --- diff --git a/drivers/ata/ahci.c b/drivers/ata/ahci.c index aa93b0ecbbc6..1b4151d95888 100644 --- a/drivers/ata/ahci.c +++ b/drivers/ata/ahci.c @@ -674,7 +674,9 @@ MODULE_PARM_DESC(marvell_enable, "Marvell SATA via AHCI (1 = enabled)"); static int mobile_lpm_policy = -1; module_param(mobile_lpm_policy, int, 0644); -MODULE_PARM_DESC(mobile_lpm_policy, "Default LPM policy for mobile chipsets"); +MODULE_PARM_DESC(mobile_lpm_policy, + "Default LPM policy. Despite its name, this parameter applies " + "to all chipsets, including desktop and server chipsets"); static char *ahci_mask_port_map; module_param_named(mask_port_map, ahci_mask_port_map, charp, 0444);