mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-28 12:25:31 +00:00
drm/agpsupport: Move EXPORT_SYMBOL so that it immediately follows its function
EXPORT_SYMBOL(foo) should immediately follow its function/variable. This coding style is preferred. Found by checkpath.pl. Signed-off-by: Meghana Madhyastha <meghana.madhyastha@gmail.com> Signed-off-by: Sean Paul <seanpaul@chromium.org> Link: https://patchwork.freedesktop.org/patch/msgid/0496f0e821082969ec7950ac35f1e6b6cedb22a6.1505376068.git.meghana.madhyastha@gmail.com
This commit is contained in:
parent
182e61d136
commit
221399c387
@ -70,7 +70,6 @@ int drm_agp_info(struct drm_device *dev, struct drm_agp_info *info)
|
|||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
EXPORT_SYMBOL(drm_agp_info);
|
EXPORT_SYMBOL(drm_agp_info);
|
||||||
|
|
||||||
int drm_agp_info_ioctl(struct drm_device *dev, void *data,
|
int drm_agp_info_ioctl(struct drm_device *dev, void *data,
|
||||||
@ -107,7 +106,6 @@ int drm_agp_acquire(struct drm_device *dev)
|
|||||||
dev->agp->acquired = 1;
|
dev->agp->acquired = 1;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
EXPORT_SYMBOL(drm_agp_acquire);
|
EXPORT_SYMBOL(drm_agp_acquire);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -172,7 +170,6 @@ int drm_agp_enable(struct drm_device *dev, struct drm_agp_mode mode)
|
|||||||
dev->agp->enabled = 1;
|
dev->agp->enabled = 1;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
EXPORT_SYMBOL(drm_agp_enable);
|
EXPORT_SYMBOL(drm_agp_enable);
|
||||||
|
|
||||||
int drm_agp_enable_ioctl(struct drm_device *dev, void *data,
|
int drm_agp_enable_ioctl(struct drm_device *dev, void *data,
|
||||||
|
Loading…
Reference in New Issue
Block a user