mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
drm: Add missing static storage class specifiers in drm_proc.c file
Fixes the following sparse warning: drivers/gpu/drm/drm_proc.c:92:5: warning: symbol 'drm_proc_create_files' was not declared. Should it be static? drivers/gpu/drm/drm_proc.c:175:5: warning: symbol 'drm_proc_remove_files' was not declared. Should it be static? Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org> Signed-off-by: Dave Airlie <airlied@redhat.com>
This commit is contained in:
parent
d5c2c20e35
commit
27fc4f1c0b
1 changed files with 2 additions and 2 deletions
|
@ -89,7 +89,7 @@ static const struct file_operations drm_proc_fops = {
|
||||||
* Create a given set of proc files represented by an array of
|
* Create a given set of proc files represented by an array of
|
||||||
* gdm_proc_lists in the given root directory.
|
* gdm_proc_lists in the given root directory.
|
||||||
*/
|
*/
|
||||||
int drm_proc_create_files(struct drm_info_list *files, int count,
|
static int drm_proc_create_files(struct drm_info_list *files, int count,
|
||||||
struct proc_dir_entry *root, struct drm_minor *minor)
|
struct proc_dir_entry *root, struct drm_minor *minor)
|
||||||
{
|
{
|
||||||
struct drm_device *dev = minor->dev;
|
struct drm_device *dev = minor->dev;
|
||||||
|
@ -172,7 +172,7 @@ int drm_proc_init(struct drm_minor *minor, int minor_id,
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
int drm_proc_remove_files(struct drm_info_list *files, int count,
|
static int drm_proc_remove_files(struct drm_info_list *files, int count,
|
||||||
struct drm_minor *minor)
|
struct drm_minor *minor)
|
||||||
{
|
{
|
||||||
struct list_head *pos, *q;
|
struct list_head *pos, *q;
|
||||||
|
|
Loading…
Reference in a new issue