diff options
author | Damien Le Moal <dlemoal@kernel.org> | 2025-06-19 12:59:46 +0900 |
---|---|---|
committer | Damien Le Moal <dlemoal@kernel.org> | 2025-06-30 10:25:45 +0900 |
commit | 3a382b9b13aaa02af0f5b194cce2825fe78f4f51 (patch) | |
tree | 87669d312dd967408a1c7a8ff112aaa1c1b6319b | |
parent | 2b89eb177c466bb1f84dff8db04d614b33a7ab95 (diff) |
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 <dlemoal@kernel.org>
Reviewed-by: Hannes Reinecke <hare@suse.de>
Reviewed-by: Niklas Cassel <cassel@kernel.org>
-rw-r--r-- | drivers/ata/ahci.c | 4 |
1 files changed, 3 insertions, 1 deletions
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); |