diff options
author | Dave Airlie <airlied@linux.ie> | 2006-07-24 11:09:41 +1000 |
---|---|---|
committer | Dave Airlie <airlied@linux.ie> | 2006-07-24 11:09:41 +1000 |
commit | 09c901e4bdf2bd18110f963ef3759f6759f15317 (patch) | |
tree | 6d1f1228e34199f86e3fbf4a302f697ccf37bf45 | |
parent | 5cfbd5dbab4fe9668771377cb22da04c6103459e (diff) |
remove incorrect exit marking on cleanup pci as this is called from other paths
-rw-r--r-- | linux-core/drm_drv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux-core/drm_drv.c b/linux-core/drm_drv.c index c3ea9b53..0281178c 100644 --- a/linux-core/drm_drv.c +++ b/linux-core/drm_drv.c @@ -245,7 +245,7 @@ int drm_lastclose(drm_device_t * dev) return 0; } -void __exit drm_cleanup_pci(struct pci_dev *pdev) +void drm_cleanup_pci(struct pci_dev *pdev) { drm_device_t *dev = pci_get_drvdata(pdev); |