From patchwork Thu Feb 15 17:52:20 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Charles Keepax X-Patchwork-Id: 10222909 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 B3BE1601D7 for ; Thu, 15 Feb 2018 17:54:21 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id A46D929143 for ; Thu, 15 Feb 2018 17:54:21 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 994DE294BA; Thu, 15 Feb 2018 17:54:21 +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 336DE29143 for ; Thu, 15 Feb 2018 17:54:21 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1165799AbeBORwx (ORCPT ); Thu, 15 Feb 2018 12:52:53 -0500 Received: from mx0a-001ae601.pphosted.com ([67.231.149.25]:59404 "EHLO mx0b-001ae601.pphosted.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1165798AbeBORws (ORCPT ); Thu, 15 Feb 2018 12:52:48 -0500 Received: from pps.filterd (m0077473.ppops.net [127.0.0.1]) by mx0a-001ae601.pphosted.com (8.16.0.22/8.16.0.22) with SMTP id w1FHn8Sf007246; Thu, 15 Feb 2018 11:52:22 -0600 Authentication-Results: ppops.net; spf=none smtp.mailfrom=ckeepax@opensource.cirrus.com Received: from mail4.cirrus.com ([87.246.98.35]) by mx0a-001ae601.pphosted.com with ESMTP id 2g1y177dj4-1; Thu, 15 Feb 2018 11:52:22 -0600 Received: from EX17.ad.cirrus.com (unknown [172.20.9.81]) by mail4.cirrus.com (Postfix) with ESMTP id 2FFBB611CE60; Thu, 15 Feb 2018 11:53:08 -0600 (CST) Received: from imbe.wolfsonmicro.main (198.61.95.81) by EX17.ad.cirrus.com (172.20.9.81) with Microsoft SMTP Server id 14.3.301.0; Thu, 15 Feb 2018 17:52:21 +0000 Received: from algalon.ad.cirrus.com (algalon.ad.cirrus.com [198.90.251.122]) by imbe.wolfsonmicro.main (8.14.4/8.14.4) with ESMTP id w1FHqKQ6011950; Thu, 15 Feb 2018 17:52:20 GMT From: Charles Keepax To: CC: , , , , , , Subject: [PATCH 5/5] regmap: Remove regmap_get_raw_read_max Date: Thu, 15 Feb 2018 17:52:20 +0000 Message-ID: <20180215175220.2691-5-ckeepax@opensource.cirrus.com> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20180215175220.2691-1-ckeepax@opensource.cirrus.com> References: <20180215175220.2691-1-ckeepax@opensource.cirrus.com> MIME-Version: 1.0 X-Proofpoint-Spam-Details: rule=notspam policy=default score=0 priorityscore=1501 malwarescore=0 suspectscore=1 phishscore=0 bulkscore=0 spamscore=0 clxscore=1011 lowpriorityscore=0 mlxscore=0 impostorscore=0 mlxlogscore=777 adultscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.0.1-1711220000 definitions=main-1802150215 Sender: linux-iio-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-iio@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Since the handling for max_raw_read is now inside regmap_raw_read there should be no need for client drivers to query as max_raw_read. Signed-off-by: Charles Keepax --- drivers/base/regmap/regmap.c | 11 ----------- include/linux/regmap.h | 1 - 2 files changed, 12 deletions(-) diff --git a/drivers/base/regmap/regmap.c b/drivers/base/regmap/regmap.c index 872be065e3fe..a7ee885fce89 100644 --- a/drivers/base/regmap/regmap.c +++ b/drivers/base/regmap/regmap.c @@ -1641,17 +1641,6 @@ bool regmap_can_raw_write(struct regmap *map) EXPORT_SYMBOL_GPL(regmap_can_raw_write); /** - * regmap_get_raw_read_max - Get the maximum size we can read - * - * @map: Map to check. - */ -size_t regmap_get_raw_read_max(struct regmap *map) -{ - return map->max_raw_read; -} -EXPORT_SYMBOL_GPL(regmap_get_raw_read_max); - -/** * regmap_get_raw_write_max - Get the maximum size we can read * * @map: Map to check. diff --git a/include/linux/regmap.h b/include/linux/regmap.h index 6a3aeba40e9e..0382fb787c10 100644 --- a/include/linux/regmap.h +++ b/include/linux/regmap.h @@ -936,7 +936,6 @@ int regmap_get_max_register(struct regmap *map); int regmap_get_reg_stride(struct regmap *map); int regmap_async_complete(struct regmap *map); bool regmap_can_raw_write(struct regmap *map); -size_t regmap_get_raw_read_max(struct regmap *map); size_t regmap_get_raw_write_max(struct regmap *map); int regcache_sync(struct regmap *map);