diff options
author | Owain Ainsworth <oga@cvs.openbsd.org> | 2008-06-26 19:33:21 +0000 |
---|---|---|
committer | Owain Ainsworth <oga@cvs.openbsd.org> | 2008-06-26 19:33:21 +0000 |
commit | 547426e1fa649b9016279490b553525e25c0a312 (patch) | |
tree | eb30362bab256567044bf829d0ff455eb127c042 /sys/dev/pci/drm/drm_memory.c | |
parent | 8a4fdf364f2135efca69958310001006fa0561f6 (diff) |
Kill the silly ``drm_device_t'' and ``drm_file_t'' typedefs. just use
``struct drm_device'' and ``struct drm_file'' respectively. Since i'm
changing a lot of prototypes anyway, remove all parameter names from
prototypes, in accordance with style(9) (and sanity).
Diffstat (limited to 'sys/dev/pci/drm/drm_memory.c')
-rw-r--r-- | sys/dev/pci/drm/drm_memory.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/pci/drm/drm_memory.c b/sys/dev/pci/drm/drm_memory.c index 8562b83068e..c727da1202b 100644 --- a/sys/dev/pci/drm/drm_memory.c +++ b/sys/dev/pci/drm/drm_memory.c @@ -83,7 +83,7 @@ drm_free(void *pt, size_t size, int area) } void * -drm_ioremap(drm_device_t *dev, drm_local_map_t *map) +drm_ioremap(struct drm_device *dev, drm_local_map_t *map) { struct vga_pci_bar *bar = NULL; int i; |