From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id BC011C77B61 for ; Tue, 25 Apr 2023 12:51:40 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S234176AbjDYMvj (ORCPT ); Tue, 25 Apr 2023 08:51:39 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:58662 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S234174AbjDYMvi (ORCPT ); Tue, 25 Apr 2023 08:51:38 -0400 Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by lindbergh.monkeyblade.net (Postfix) with ESMTP id 0EEADBB8D; Tue, 25 Apr 2023 05:51:36 -0700 (PDT) Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 7E1934B3; Tue, 25 Apr 2023 05:52:20 -0700 (PDT) Received: from [192.168.1.3] (unknown [172.31.20.19]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id E5B7F3F64C; Tue, 25 Apr 2023 05:51:33 -0700 (PDT) Message-ID: <108babe4-20cb-e637-e7da-7d04127d2a9e@arm.com> Date: Tue, 25 Apr 2023 13:51:31 +0100 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.9.0 Subject: Re: [PATCH v3 0/4] devres: Provide krealloc_array Content-Language: en-US To: Greg Kroah-Hartman Cc: Jonathan Corbet , Jean Delvare , Anand Ashok Dumbre , Jonathan Cameron , Lars-Peter Clausen , Michal Simek , Andy Gross , Bjorn Andersson , Konrad Dybcio , Jiri Slaby , linux-doc@vger.kernel.org, linux-hwmon@vger.kernel.org, linux-iio@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-arm-msm@vger.kernel.org, linux-serial@vger.kernel.org, linux-kernel@vger.kernel.org, linux@roeck-us.net, michal.simek@amd.com, Jonathan.Cameron@huawei.com, andriy.shevchenko@linux.intel.com References: <20230320145710.1120469-1-james.clark@arm.com> From: James Clark In-Reply-To: <20230320145710.1120469-1-james.clark@arm.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-hwmon@vger.kernel.org On 20/03/2023 14:57, James Clark wrote: > Changes since v2: > > * Remove change in qcom_geni_serial.c in the last commmit and replace > it with a comment instead > * Whitespace fix > > Changes since v1: > > * Style fix > > ----------------------- > > Hi, > > I had a use for a devm realloc_array in a separate change, so I've > added one and updated all the obvious existing uses of it that I could > find. This is basically a copy paste of the one in slab.h > > Applies to v6.3-rc3 > > Thanks > James > > James Clark (4): > devres: Provide krealloc_array > hwmon: pmbus: Use devm_krealloc_array > iio: adc: Use devm_krealloc_array > serial: qcom_geni: Comment use of devm_krealloc rather than > devm_krealloc_array > > .../driver-api/driver-model/devres.rst | 1 + > drivers/hwmon/pmbus/pmbus_core.c | 6 +++--- > drivers/iio/adc/xilinx-ams.c | 9 +++------ > drivers/iio/adc/xilinx-xadc-core.c | 17 +++++++---------- > drivers/tty/serial/qcom_geni_serial.c | 5 +++++ > include/linux/device.h | 11 +++++++++++ > 6 files changed, 30 insertions(+), 19 deletions(-) > Hi Greg, Is it possible to take this one? Or at least the first commit? Thanks James