Commit 93c3ffc8 authored by Lee Jones's avatar Lee Jones Committed by Daniel Vetter

drm/gma500/intel_i2c: Remove superflouous parameter description and rename another

Fixes the following W=1 kernel build warning(s):

 drivers/gpu/drm/gma500/intel_i2c.c:108: warning: Excess function parameter 'output' description in 'psb_intel_i2c_create'
 drivers/gpu/drm/gma500/intel_i2c.c:153: warning: Function parameter or member 'chan' not described in 'psb_intel_i2c_destroy'
 drivers/gpu/drm/gma500/intel_i2c.c:153: warning: Excess function parameter 'output' description in 'psb_intel_i2c_destroy'

Cc: Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
Cc: David Airlie <airlied@linux.ie>
Cc: Daniel Vetter <daniel@ffwll.ch>
Cc: Eric Anholt <eric@anholt.net>
Cc: dri-devel@lists.freedesktop.org
Signed-off-by: default avatarLee Jones <lee.jones@linaro.org>
Signed-off-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
Link: https://patchwork.freedesktop.org/patch/msgid/20210115181313.3431493-18-lee.jones@linaro.org
parent 8dd680cc
...@@ -85,7 +85,6 @@ static void set_data(void *data, int state_high) ...@@ -85,7 +85,6 @@ static void set_data(void *data, int state_high)
/** /**
* psb_intel_i2c_create - instantiate an Intel i2c bus using the specified GPIO reg * psb_intel_i2c_create - instantiate an Intel i2c bus using the specified GPIO reg
* @dev: DRM device * @dev: DRM device
* @output: driver specific output device
* @reg: GPIO reg to use * @reg: GPIO reg to use
* @name: name for this bus * @name: name for this bus
* *
...@@ -145,7 +144,7 @@ struct psb_intel_i2c_chan *psb_intel_i2c_create(struct drm_device *dev, ...@@ -145,7 +144,7 @@ struct psb_intel_i2c_chan *psb_intel_i2c_create(struct drm_device *dev,
/** /**
* psb_intel_i2c_destroy - unregister and free i2c bus resources * psb_intel_i2c_destroy - unregister and free i2c bus resources
* @output: channel to free * @chan: channel to free
* *
* Unregister the adapter from the i2c layer, then free the structure. * Unregister the adapter from the i2c layer, then free the structure.
*/ */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment