summaryrefslogtreecommitdiffstats
path: root/sys/dev/drm/mach64_drv.c
diff options
context:
space:
mode:
authorrnoland <rnoland@FreeBSD.org>2009-03-09 07:55:18 +0000
committerrnoland <rnoland@FreeBSD.org>2009-03-09 07:55:18 +0000
commit084103fa7c35965480ccfb414eba7fe760257f01 (patch)
treeec2a19738aab4e29749971884148431ddf8aeb2e /sys/dev/drm/mach64_drv.c
parent7d9d797109b2cf2136f939594054bf4c04475391 (diff)
downloadFreeBSD-src-084103fa7c35965480ccfb414eba7fe760257f01.zip
FreeBSD-src-084103fa7c35965480ccfb414eba7fe760257f01.tar.gz
Consistently use kdev for the kernel device.
Submitted by: vehemens <vehemens@verizon.net> MFC after: 3 days
Diffstat (limited to 'sys/dev/drm/mach64_drv.c')
-rw-r--r--sys/dev/drm/mach64_drv.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/sys/dev/drm/mach64_drv.c b/sys/dev/drm/mach64_drv.c
index c8fd080..6f859ec 100644
--- a/sys/dev/drm/mach64_drv.c
+++ b/sys/dev/drm/mach64_drv.c
@@ -77,22 +77,22 @@ static void mach64_configure(struct drm_device *dev)
}
static int
-mach64_probe(device_t dev)
+mach64_probe(device_t kdev)
{
- return drm_probe(dev, mach64_pciidlist);
+ return drm_probe(kdev, mach64_pciidlist);
}
static int
-mach64_attach(device_t nbdev)
+mach64_attach(device_t kdev)
{
- struct drm_device *dev = device_get_softc(nbdev);
+ struct drm_device *dev = device_get_softc(kdev);
dev->driver = malloc(sizeof(struct drm_driver_info), DRM_MEM_DRIVER,
M_WAITOK | M_ZERO);
mach64_configure(dev);
- return drm_attach(nbdev, mach64_pciidlist);
+ return drm_attach(kdev, mach64_pciidlist);
}
int
@@ -102,12 +102,12 @@ mach64_driver_load(struct drm_device * dev, unsigned long flags)
}
static int
-mach64_detach(device_t nbdev)
+mach64_detach(device_t kdev)
{
- struct drm_device *dev = device_get_softc(nbdev);
+ struct drm_device *dev = device_get_softc(kdev);
int ret;
- ret = drm_detach(nbdev);
+ ret = drm_detach(kdev);
free(dev->driver, DRM_MEM_DRIVER);
OpenPOWER on IntegriCloud