diff options
author | 2008-10-28 23:41:11 +0000 | |
---|---|---|
committer | 2008-10-28 23:41:11 +0000 | |
commit | f577234c5f8bd9b073020749e4a1ae9b36d57053 (patch) | |
tree | e7bd0b15e9d4c6d9476f848bef3676fce768cadd | |
parent | Do not keep retrying to send advertisements if there is (diff) | |
download | wireguard-openbsd-f577234c5f8bd9b073020749e4a1ae9b36d57053.tar.xz wireguard-openbsd-f577234c5f8bd9b073020749e4a1ae9b36d57053.zip |
make DRM_INFO() a bit less gross, though getting all the grossness out at once is impossible; ok oga
-rw-r--r-- | sys/dev/pci/drm/drmP.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/pci/drm/drmP.h b/sys/dev/pci/drm/drmP.h index 73260123d0b..76d6ea9ba54 100644 --- a/sys/dev/pci/drm/drmP.h +++ b/sys/dev/pci/drm/drmP.h @@ -251,7 +251,7 @@ DRM_SPINUNLOCK(&dev->irq_lock) printf("error: [" DRM_NAME ":pid%d:%s] *ERROR* " fmt, \ DRM_CURRENTPID, __func__ , ## arg) -#define DRM_INFO(fmt, arg...) printf("info: [" DRM_NAME "] " fmt , ## arg) +#define DRM_INFO(fmt, arg...) printf("%s: " fmt, drm_units[0]->device.dv_xname, ## arg) #undef DRM_DEBUG #define DRM_DEBUG(fmt, arg...) do { \ |