diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2008-12-08 19:06:35 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2008-12-08 19:06:35 +0000 |
commit | 9ef2a3fe2bed096bb54e91ec21a79c6b58c8239b (patch) | |
tree | bc04ce5b8088936f2a48671c45f1fcdefb16b7b8 /sys/dev/pci/drm/r128_drv.c | |
parent | c54d27eb35d9f6942291be4c5927f3d7636ad7f0 (diff) |
Make the various drm drivers print the interrupt they're using.
ok oga@
Diffstat (limited to 'sys/dev/pci/drm/r128_drv.c')
-rw-r--r-- | sys/dev/pci/drm/r128_drv.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/dev/pci/drm/r128_drv.c b/sys/dev/pci/drm/r128_drv.c index 2e482066256..480256daf26 100644 --- a/sys/dev/pci/drm/r128_drv.c +++ b/sys/dev/pci/drm/r128_drv.c @@ -140,6 +140,7 @@ ragedrm_attach(struct device *parent, struct device *self, void *aux) printf(": couldn't map interrupt\n"); return; } + printf(": %s\n", pci_intr_string(pa->pa_pc, dev_priv->ih)); is_agp = pci_get_capability(pa->pa_pc, pa->pa_tag, PCI_CAP_AGP, NULL, NULL); |