aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/char/drm/via_drv.c
diff options
context:
space:
mode:
authorDave Airlie <airlied@starflyer.(none)>2005-09-25 00:28:13 -0400
committerDave Airlie <airlied@linux.ie>2005-09-25 00:28:13 -0400
commitb5e89ed53ed8d24f83ba1941c07382af00ed238e (patch)
tree747bae7a565f88a2e1d5974776eeb054a932c505 /drivers/char/drm/via_drv.c
parent99a2657a29e2d623c3568cd86b27cac13fb63140 (diff)
drm: lindent the drm directory.
I've been threatening this for a while, so no point hanging around. This lindents the DRM code which was always really bad in tabbing department. I've also fixed some misnamed files in comments and removed some trailing whitespace. Signed-off-by: Dave Airlie <airlied@linux.ie>
Diffstat (limited to 'drivers/char/drm/via_drv.c')
-rw-r--r--drivers/char/drm/via_drv.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/drivers/char/drm/via_drv.c b/drivers/char/drm/via_drv.c
index 275eefc79221..016665e0c69f 100644
--- a/drivers/char/drm/via_drv.c
+++ b/drivers/char/drm/via_drv.c
@@ -93,18 +93,18 @@ static struct drm_driver driver = {
93 .ioctls = ioctls, 93 .ioctls = ioctls,
94 .num_ioctls = DRM_ARRAY_SIZE(ioctls), 94 .num_ioctls = DRM_ARRAY_SIZE(ioctls),
95 .fops = { 95 .fops = {
96 .owner = THIS_MODULE, 96 .owner = THIS_MODULE,
97 .open = drm_open, 97 .open = drm_open,
98 .release = drm_release, 98 .release = drm_release,
99 .ioctl = drm_ioctl, 99 .ioctl = drm_ioctl,
100 .mmap = drm_mmap, 100 .mmap = drm_mmap,
101 .poll = drm_poll, 101 .poll = drm_poll,
102 .fasync = drm_fasync, 102 .fasync = drm_fasync,
103 }, 103 },
104 .pci_driver = { 104 .pci_driver = {
105 .name = DRIVER_NAME, 105 .name = DRIVER_NAME,
106 .id_table = pciidlist, 106 .id_table = pciidlist,
107 } 107 }
108}; 108};
109 109
110static int __init via_init(void) 110static int __init via_init(void)