diff options
| author | Ville Syrjälä <ville.syrjala@linux.intel.com> | 2013-04-25 20:09:20 +0300 | 
|---|---|---|
| committer | Dave Airlie <airlied@redhat.com> | 2013-04-30 10:02:25 +1000 | 
| commit | ea9cbb063ce7509d98febdc756e77d6b69a10b56 (patch) | |
| tree | 06cef9ab6d943315d63f8122278409c7eaa57146 /drivers/gpu/drm/drm_crtc.c | |
| parent | 7d05336b0c54cd5921b748e306ee0513b620dedf (diff) | |
| download | olio-linux-3.10-ea9cbb063ce7509d98febdc756e77d6b69a10b56.tar.xz olio-linux-3.10-ea9cbb063ce7509d98febdc756e77d6b69a10b56.zip  | |
drm: Silence some sparse warnings
drivers/gpu/drm/drm_pci.c:155:5: warning: symbol 'drm_pci_set_busid' was not declared. Should it be static?
drivers/gpu/drm/drm_pci.c:197:5: warning: symbol 'drm_pci_set_unique' was not declared. Should it be static?
drivers/gpu/drm/drm_pci.c:269:5: warning: symbol 'drm_pci_agp_init' was not declared. Should it be static?
drivers/gpu/drm/drm_crtc.c:181:1: warning: symbol 'drm_get_dirty_info_name' was not declared. Should it be static?
drivers/gpu/drm/drm_crtc.c:1123:5: warning: symbol 'drm_mode_group_init' was not declared. Should it be static?
drivers/gpu/drm/drm_modes.c:918:6: warning: symbol 'drm_mode_validate_clocks' was not declared. Should it be static?
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/drm_crtc.c')
| -rw-r--r-- | drivers/gpu/drm/drm_crtc.c | 5 | 
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/gpu/drm/drm_crtc.c b/drivers/gpu/drm/drm_crtc.c index c577baec416..287cd82f9d7 100644 --- a/drivers/gpu/drm/drm_crtc.c +++ b/drivers/gpu/drm/drm_crtc.c @@ -178,9 +178,6 @@ static struct drm_prop_enum_list drm_dirty_info_enum_list[] = {  	{ DRM_MODE_DIRTY_ANNOTATE, "Annotate" },  }; -DRM_ENUM_NAME_FN(drm_get_dirty_info_name, -		 drm_dirty_info_enum_list) -  struct drm_conn_prop_enum_list {  	int type;  	char *name; @@ -1120,7 +1117,7 @@ int drm_mode_create_dirty_info_property(struct drm_device *dev)  }  EXPORT_SYMBOL(drm_mode_create_dirty_info_property); -int drm_mode_group_init(struct drm_device *dev, struct drm_mode_group *group) +static int drm_mode_group_init(struct drm_device *dev, struct drm_mode_group *group)  {  	uint32_t total_objects = 0;  |