diff options
author | Dave Airlie <airlied@linux.ie> | 2007-07-11 02:09:54 -0400 |
---|---|---|
committer | Dave Airlie <airlied@linux.ie> | 2007-07-11 02:09:54 -0400 |
commit | eddca551a3e7be2fed54282f255f18efe9ead131 (patch) | |
tree | 7beb8c03af45cc9659a3ff5e6483f2ed7c31527d /drivers/char/drm/mga_drv.c | |
parent | 84b1fd103dbbe01b5905db1444d3fc8afa9a7207 (diff) |
drm: fixup other drivers for typedef removals
Signed-off-by: Dave Airlie <airlied@linux.ie>
Diffstat (limited to 'drivers/char/drm/mga_drv.c')
-rw-r--r-- | drivers/char/drm/mga_drv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/char/drm/mga_drv.c b/drivers/char/drm/mga_drv.c index be49dbb9ec3..5572939fc7d 100644 --- a/drivers/char/drm/mga_drv.c +++ b/drivers/char/drm/mga_drv.c | |||
@@ -36,7 +36,7 @@ | |||
36 | 36 | ||
37 | #include "drm_pciids.h" | 37 | #include "drm_pciids.h" |
38 | 38 | ||
39 | static int mga_driver_device_is_agp(drm_device_t * dev); | 39 | static int mga_driver_device_is_agp(struct drm_device * dev); |
40 | 40 | ||
41 | static struct pci_device_id pciidlist[] = { | 41 | static struct pci_device_id pciidlist[] = { |
42 | mga_PCI_IDS | 42 | mga_PCI_IDS |
@@ -118,7 +118,7 @@ MODULE_LICENSE("GPL and additional rights"); | |||
118 | * \returns | 118 | * \returns |
119 | * If the device is a PCI G450, zero is returned. Otherwise 2 is returned. | 119 | * If the device is a PCI G450, zero is returned. Otherwise 2 is returned. |
120 | */ | 120 | */ |
121 | static int mga_driver_device_is_agp(drm_device_t * dev) | 121 | static int mga_driver_device_is_agp(struct drm_device * dev) |
122 | { | 122 | { |
123 | const struct pci_dev *const pdev = dev->pdev; | 123 | const struct pci_dev *const pdev = dev->pdev; |
124 | 124 | ||