ata: pata_parport: fix pata_parport_devchk
authorOndrej Zary <linux@zary.sk>
Thu, 5 Oct 2023 20:55:56 +0000 (22:55 +0200)
committerDamien Le Moal <dlemoal@kernel.org>
Tue, 10 Oct 2023 05:42:22 +0000 (14:42 +0900)
There's a 'x' missing in 0x55 in pata_parport_devchk(), causing the
detection to always fail. Fix it.

Fixes: 246a1c4c6b7f ("ata: pata_parport: add driver (PARIDE replacement)")
Cc: stable@vger.kernel.org
Signed-off-by: Ondrej Zary <linux@zary.sk>
Reviewed-by: Sergey Shtylyov <s.shtylyov@omp.ru>
Signed-off-by: Damien Le Moal <dlemoal@kernel.org>
drivers/ata/pata_parport/pata_parport.c

index 1af64d4..258d189 100644 (file)
@@ -64,7 +64,7 @@ static bool pata_parport_devchk(struct ata_port *ap, unsigned int device)
        pi->proto->write_regr(pi, 0, ATA_REG_NSECT, 0xaa);
        pi->proto->write_regr(pi, 0, ATA_REG_LBAL, 0x55);
 
-       pi->proto->write_regr(pi, 0, ATA_REG_NSECT, 055);
+       pi->proto->write_regr(pi, 0, ATA_REG_NSECT, 0x55);
        pi->proto->write_regr(pi, 0, ATA_REG_LBAL, 0xaa);
 
        nsect = pi->proto->read_regr(pi, 0, ATA_REG_NSECT);