commit | d14d41cc5aaef138face9d5a145b460e2b63697a | [log] [tgz] |
---|---|---|
author | Sergey Shtylyov <s.shtylyov@omp.ru> | Sat Jul 29 23:17:49 2023 +0300 |
committer | Damien Le Moal <dlemoal@kernel.org> | Wed Aug 02 17:37:06 2023 +0900 |
tree | 009ea4f72a1c41baadcde36d75973b0e995dd08e | |
parent | ca02f22516dd0f0a4842ec27916160b4b8fd3e5a [diff] |
ata: fix debounce timings type sata_deb_timing_{hotplug|long|normal}[] store 'unsigned long' debounce timeouts in ms, while sata_link_debounce() eventually uses those timeouts by calling ata_{deadline|msleep}( which take just 'unsigned int'. Change the debounce timeout table element's type to 'unsigned int' -- all these timeouts happily fit into 'unsigned int'... Signed-off-by: Sergey Shtylyov <s.shtylyov@omp.ru> Signed-off-by: Damien Le Moal <dlemoal@kernel.org>