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

Commit d9ae6243 authored by Frans Pop's avatar Frans Pop Committed by David S. Miller
Browse files

ide-cd: Improve "weird block size" error message



Currently the error gets repeated too frequently, for example each
time HAL polls the device when a disc is present. Avoid that by using
printk_once instead of printk.

Also join the error and corrective action messages into a single line.

Signed-off-by: default avatarFrans Pop <elendil@planet.nl>
Acked-by: default avatarBorislav Petkov <petkovbb@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent af054ed0
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -889,10 +889,9 @@ static int cdrom_read_capacity(ide_drive_t *drive, unsigned long *capacity,
	case 4096:
		break;
	default:
		printk(KERN_ERR PFX "%s: weird block size %u\n",
		printk_once(KERN_ERR PFX "%s: weird block size %u; "
				"setting default block size to 2048\n",
				drive->name, blocklen);
		printk(KERN_ERR PFX "%s: default to 2kb block size\n",
				drive->name);
		blocklen = 2048;
		break;
	}