Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 24d57f8b authored by Borislav Petkov's avatar Borislav Petkov Committed by Bartlomiej Zolnierkiewicz
Browse files

ide-tape: fix syntax error in idetape_identify_device()



Spotted by Sergei Shtylyov.

CC: Sergei Shtylyov <sshtylyov@ru.mvista.com>
Signed-off-by: default avatarBorislav Petkov <petkovbb@gmail.com>
Signed-off-by: default avatarBartlomiej Zolnierkiewicz <bzolnier@gmail.com>
parent bf6296b6
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -3275,7 +3275,7 @@ static int idetape_identify_device(ide_drive_t *drive)
		printk(KERN_ERR "ide-tape: The removable flag is not set\n");
	else if (packet_size != 0) {
		printk(KERN_ERR "ide-tape: Packet size (0x%02x) is not 12"
				"bytes long\n", packet_size);
				" bytes\n", packet_size);
	} else
		return 1;
	return 0;