From patchwork Tue Nov 16 21:56:31 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Hans Verkuil X-Patchwork-Id: 329821 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter1.kernel.org (8.14.4/8.14.3) with ESMTP id oAGLuOpt005442 for ; Tue, 16 Nov 2010 21:56:40 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932777Ab0KPV4g (ORCPT ); Tue, 16 Nov 2010 16:56:36 -0500 Received: from smtp-vbr18.xs4all.nl ([194.109.24.38]:3809 "EHLO smtp-vbr18.xs4all.nl" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932655Ab0KPV4f (ORCPT ); Tue, 16 Nov 2010 16:56:35 -0500 Received: from localhost (209.80-203-30.nextgentel.com [80.203.30.209]) by smtp-vbr18.xs4all.nl (8.13.8/8.13.8) with ESMTP id oAGLuXOS039480 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO); Tue, 16 Nov 2010 22:56:33 +0100 (CET) (envelope-from hverkuil@xs4all.nl) Message-Id: <31cd863a682c3173d87d781bb877332a74e40454.1289944160.git.hverkuil@xs4all.nl> In-Reply-To: References: From: Hans Verkuil Date: Tue, 16 Nov 2010 22:56:31 +0100 Subject: [RFCv2 PATCH 09/15] sn9c102: convert to unlocked_ioctl. To: linux-media@vger.kernel.org Cc: Arnd Bergmann X-Virus-Scanned: by XS4ALL Virus Scanner Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.3 (demeter1.kernel.org [140.211.167.41]); Tue, 16 Nov 2010 21:56:40 +0000 (UTC) diff --git a/drivers/media/video/sn9c102/sn9c102_core.c b/drivers/media/video/sn9c102/sn9c102_core.c index 28e19da..f49fbfb 100644 --- a/drivers/media/video/sn9c102/sn9c102_core.c +++ b/drivers/media/video/sn9c102/sn9c102_core.c @@ -3238,7 +3238,7 @@ static const struct v4l2_file_operations sn9c102_fops = { .owner = THIS_MODULE, .open = sn9c102_open, .release = sn9c102_release, - .ioctl = sn9c102_ioctl, + .unlocked_ioctl = sn9c102_ioctl, .read = sn9c102_read, .poll = sn9c102_poll, .mmap = sn9c102_mmap,