diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2008-10-28 23:41:12 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2008-10-28 23:41:12 +0000 |
commit | ff9fb621a78190a6032c381efb970f6dff333656 (patch) | |
tree | 60cde3f289d4c213a6cccb0e80b16febbe259b21 /sys/dev/pci | |
parent | b4a28de4c53a42e330a0b951d87a5086b485e39b (diff) |
make DRM_INFO() a bit less gross, though getting all the grossness out at once is impossible; ok oga
Diffstat (limited to 'sys/dev/pci')
-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 { \ |