summaryrefslogtreecommitdiff
path: root/sys/dev/pci/drm/i915/dvo_ch7xxx.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/pci/drm/i915/dvo_ch7xxx.c')
-rw-r--r--sys/dev/pci/drm/i915/dvo_ch7xxx.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/sys/dev/pci/drm/i915/dvo_ch7xxx.c b/sys/dev/pci/drm/i915/dvo_ch7xxx.c
index 3091f829bc6..71943c1b189 100644
--- a/sys/dev/pci/drm/i915/dvo_ch7xxx.c
+++ b/sys/dev/pci/drm/i915/dvo_ch7xxx.c
@@ -155,8 +155,8 @@ ch7xxx_readb(struct intel_dvo_device *dvo, int addr, uint8_t *ch)
read_err:
iic_release_bus(adapter, 0);
if (!ch7xxx->quiet) {
- DRM_DEBUG_KMS("Unable to read register 0x%02x from %s:%02x.\n",
- addr, adapter->name, dvo->slave_addr);
+ DRM_DEBUG_KMS("Unable to read register 0x%02x from %02x.\n",
+ addr, dvo->slave_addr);
}
return false;
}
@@ -185,8 +185,8 @@ ch7xxx_writeb(struct intel_dvo_device *dvo, int addr, uint8_t ch)
write_err:
if (!ch7xxx->quiet) {
- DRM_DEBUG_KMS("Unable to write register 0x%02x to %s:%d.\n",
- addr, adapter->name, dvo->slave_addr);
+ DRM_DEBUG_KMS("Unable to write register 0x%02x to %d.\n",
+ addr, dvo->slave_addr);
}
return false;
@@ -214,9 +214,9 @@ ch7xxx_init(struct intel_dvo_device *dvo,
name = ch7xxx_get_id(vendor);
if (!name) {
- DRM_DEBUG_KMS("ch7xxx not detected; got 0x%02x from %s "
+ DRM_DEBUG_KMS("ch7xxx not detected; got 0x%02x from "
"slave %d.\n",
- vendor, adapter->name, dvo->slave_addr);
+ vendor, dvo->slave_addr);
goto out;
}
@@ -225,9 +225,9 @@ ch7xxx_init(struct intel_dvo_device *dvo,
goto out;
if (device != CH7xxx_DID) {
- DRM_DEBUG_KMS("ch7xxx not detected; got 0x%02x from %s "
+ DRM_DEBUG_KMS("ch7xxx not detected; got 0x%02x "
"slave %d.\n",
- vendor, adapter->name, dvo->slave_addr);
+ vendor, dvo->slave_addr);
goto out;
}