diff --git a/minix/drivers/power/tps65950/tps65950.c b/minix/drivers/power/tps65950/tps65950.c index e1dd0814b..16cd4951f 100644 --- a/minix/drivers/power/tps65950/tps65950.c +++ b/minix/drivers/power/tps65950/tps65950.c @@ -136,6 +136,9 @@ check_revision(void) case IDCODE_REV_1_2: log_debug(&log, "TPS65950 rev 1.2\n"); break; + case 0: + log_debug(&log, "TPS65950 missing in qemu\n"); + break; default: log_warn(&log, "Unexpected IDCODE: 0x%x\n", idcode); return -1;