From patchwork Sun Jul 23 16:26:19 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jonathan Cameron X-Patchwork-Id: 9858477 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 1885E602CB for ; Sun, 23 Jul 2017 16:26:55 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 08A6221E5A for ; Sun, 23 Jul 2017 16:26:55 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id EF8AE27EE2; Sun, 23 Jul 2017 16:26:54 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.9 required=2.0 tests=BAYES_00,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 507F021E5A for ; Sun, 23 Jul 2017 16:26:54 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755432AbdGWQ0u (ORCPT ); Sun, 23 Jul 2017 12:26:50 -0400 Received: from saturn.retrosnub.co.uk ([178.18.118.26]:55638 "EHLO saturn.retrosnub.co.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751666AbdGWQ0r (ORCPT ); Sun, 23 Jul 2017 12:26:47 -0400 Received: from localhost.localdomain (cpc91196-cmbg18-2-0-cust659.5-4.cable.virginm.net [81.96.234.148]) by saturn.retrosnub.co.uk (Postfix; Retrosnub mail submission) with ESMTPSA id 6258742A1E; Sun, 23 Jul 2017 17:26:45 +0100 (BST) From: Jonathan Cameron To: linux-iio@vger.kernel.org Cc: Lars-Peter Clausen , Jonathan Cameron , Linux Input , Jonathan Cameron Subject: [PATCH 37/45] input: tsc2007 - drop the driver_module assignment in iio interface. Date: Sun, 23 Jul 2017 17:26:19 +0100 Message-Id: <20170723162627.22534-38-Jonathan.Cameron@huawei.com> X-Mailer: git-send-email 2.13.3 In-Reply-To: <20170723162627.22534-1-Jonathan.Cameron@huawei.com> References: <20170723162627.22534-1-Jonathan.Cameron@huawei.com> Sender: linux-input-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-input@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Jonathan Cameron This is now handled via some macro magic during the register. The field in iio_info will be removed shortly. Cc: Linux Input Signed-off-by: Jonathan Cameron Acked-by: Dmitry Torokhov --- drivers/input/touchscreen/tsc2007_iio.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/input/touchscreen/tsc2007_iio.c b/drivers/input/touchscreen/tsc2007_iio.c index 27b25a9fce83..e27a956f5f2b 100644 --- a/drivers/input/touchscreen/tsc2007_iio.c +++ b/drivers/input/touchscreen/tsc2007_iio.c @@ -104,7 +104,6 @@ static int tsc2007_read_raw(struct iio_dev *indio_dev, static const struct iio_info tsc2007_iio_info = { .read_raw = tsc2007_read_raw, - .driver_module = THIS_MODULE, }; int tsc2007_iio_configure(struct tsc2007 *ts)