ata: sata_sil24: fix parameter type of sil24_exec_polled_cmd()
authorSergey Shtylyov <s.shtylyov@omp.ru>
Sat, 29 Jul 2023 20:17:53 +0000 (23:17 +0300)
committerDamien Le Moal <dlemoal@kernel.org>
Wed, 2 Aug 2023 08:37:07 +0000 (17:37 +0900)
sil24_exec_polled_cmd() passes its 'unsigned long timeout_msec' parameter
to ata_wait_register() that now takes 'unsigned int' -- eliminate unneeded
implicit casts, not forgetting about sil24_do_softreset()...

Signed-off-by: Sergey Shtylyov <s.shtylyov@omp.ru>
Signed-off-by: Damien Le Moal <dlemoal@kernel.org>
drivers/ata/sata_sil24.c

index e72a025..142e70b 100644 (file)
@@ -597,7 +597,7 @@ static int sil24_init_port(struct ata_port *ap)
 static int sil24_exec_polled_cmd(struct ata_port *ap, int pmp,
                                 const struct ata_taskfile *tf,
                                 int is_cmd, u32 ctrl,
-                                unsigned long timeout_msec)
+                                unsigned int timeout_msec)
 {
        void __iomem *port = sil24_port_base(ap);
        struct sil24_port_priv *pp = ap->private_data;
@@ -651,7 +651,7 @@ static int sil24_softreset(struct ata_link *link, unsigned int *class,
 {
        struct ata_port *ap = link->ap;
        int pmp = sata_srst_pmp(link);
-       unsigned long timeout_msec = 0;
+       unsigned int timeout_msec = 0;
        struct ata_taskfile tf;
        const char *reason;
        int rc;