ata: sata_sil24: fix parameter type of sil24_exec_polled_cmd()
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>
This commit is contained in:
Родитель
6da99acbff
Коммит
671b4493fc
|
@ -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;
|
||||
|
|
Загрузка…
Ссылка в новой задаче