From 692800af00875bf1dd20dfed253d929727f49c14 Mon Sep 17 00:00:00 2001 From: Alan Coopersmith Date: Thu, 12 Jun 2025 17:18:27 -0700 Subject: [PATCH] Revert "xfree86: i2c: use LogMessageVerb() instead of xf86Msg()" This reverts commit 1f93ec5c337fdd3c09261c80c0a31d70f37ec269. Part-of: --- hw/xfree86/i2c/xf86i2c.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hw/xfree86/i2c/xf86i2c.c b/hw/xfree86/i2c/xf86i2c.c index 93d578aae..3c295b6dd 100644 --- a/hw/xfree86/i2c/xf86i2c.c +++ b/hw/xfree86/i2c/xf86i2c.c @@ -752,9 +752,9 @@ xf86DestroyI2CBusRec(I2CBusPtr b, Bool unalloc, Bool devs_too) } else { if (unalloc) { - LogMessageVerb(X_ERROR, 1, - "i2c bug: Attempt to remove I2C bus \"%s\", " - "but device list is not empty.\n", b->BusName); + xf86Msg(X_ERROR, + "i2c bug: Attempt to remove I2C bus \"%s\", " + "but device list is not empty.\n", b->BusName); return; } }