[PATCH] pata_artop: fix "& (1 >>" typo

Signed-off-by: Alexey Dobriyan <adobriyan@openvz.org>
Signed-off-by: Jeff Garzik <jeff@garzik.org>

authored by Alexey Dobriyan and committed by Jeff Garzik 3f9dd27a b5bf24b9

+1 -1
+1 -1
drivers/ata/pata_artop.c
··· 92 92 return -ENOENT; 93 93 94 94 pci_read_config_byte(pdev, 0x49, &tmp); 95 - if (tmp & (1 >> ap->port_no)) 95 + if (tmp & (1 << ap->port_no)) 96 96 ap->cbl = ATA_CBL_PATA40; 97 97 else 98 98 ap->cbl = ATA_CBL_PATA80;