diff mbox

[1/1,media] s5p-mfc: Fix compilation warning

Message ID 1350127114-5170-1-git-send-email-sachin.kamat@linaro.org
State Accepted
Headers show

Commit Message

Sachin Kamat Oct. 13, 2012, 11:18 a.m. UTC
Added missing const qualifier.
Without this patch compiler gives the following warning:

drivers/media/platform/s5p-mfc/s5p_mfc_enc.c:1576:2: warning:
initialization from incompatible pointer type [enabled by default]
drivers/media/platform/s5p-mfc/s5p_mfc_enc.c:1576:2: warning:
(near initialization for ‘s5p_mfc_enc_ioctl_ops.vidioc_subscribe_event’)
[enabled by default]

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
---
 drivers/media/platform/s5p-mfc/s5p_mfc_enc.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

Comments

Sylwester Nawrocki Oct. 20, 2012, 10:05 a.m. UTC | #1
On 10/13/2012 01:18 PM, Sachin Kamat wrote:
> Added missing const qualifier.
> Without this patch compiler gives the following warning:
>
> drivers/media/platform/s5p-mfc/s5p_mfc_enc.c:1576:2: warning:
> initialization from incompatible pointer type [enabled by default]
> drivers/media/platform/s5p-mfc/s5p_mfc_enc.c:1576:2: warning:
> (near initialization for ‘s5p_mfc_enc_ioctl_ops.vidioc_subscribe_event’)
> [enabled by default]

Applied to my tree. Thank you.
diff mbox

Patch

diff --git a/drivers/media/platform/s5p-mfc/s5p_mfc_enc.c b/drivers/media/platform/s5p-mfc/s5p_mfc_enc.c
index 2af6d52..5c1d727 100644
--- a/drivers/media/platform/s5p-mfc/s5p_mfc_enc.c
+++ b/drivers/media/platform/s5p-mfc/s5p_mfc_enc.c
@@ -1542,7 +1542,7 @@  int vidioc_encoder_cmd(struct file *file, void *priv,
 }
 
 static int vidioc_subscribe_event(struct v4l2_fh *fh,
-					struct v4l2_event_subscription *sub)
+				  const struct v4l2_event_subscription *sub)
 {
 	switch (sub->type) {
 	case V4L2_EVENT_EOS: