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 X-Spam-Level: X-Spam-Status: No, score=-17.3 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER, INCLUDES_PATCH,MAILING_LIST_MULTI,NICE_REPLY_A,SPF_HELO_NONE,SPF_PASS, USER_AGENT_SANE_1 autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 7C3B9C433C1 for ; Tue, 23 Mar 2021 03:04:17 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 5405961994 for ; Tue, 23 Mar 2021 03:04:17 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229494AbhCWDDr (ORCPT ); Mon, 22 Mar 2021 23:03:47 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:42286 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229764AbhCWDDN (ORCPT ); Mon, 22 Mar 2021 23:03:13 -0400 Received: from casper.infradead.org (casper.infradead.org [IPv6:2001:8b0:10b:1236::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 641DEC061574; Mon, 22 Mar 2021 20:03:12 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=casper.20170209; h=Content-Transfer-Encoding:Content-Type: In-Reply-To:MIME-Version:Date:Message-ID:From:References:To:Subject:Sender: Reply-To:Cc:Content-ID:Content-Description; bh=D46a6Gu22Mzwxew4OtdaKhUgC9+HWAPdUHQy1AlshxM=; b=JLAT7/GTevLzhmvJ1FxgRc9NVX wZ/YZesEcYPf82EIzpOnlxsZW8D67lMGlpRKEOQc822MMss0Qvqv4uMig2iTuLIduQqbVNG4R5EAU gxBEa/A68iFtTf9dig3FS4NSCEvJtWN0I0lSvEEMDiMvQLsPFzf6cjNvSOJuHs6U2ImoiO9Lawonv fqIxKoBXr3i29FqSI5YRKIf6NQm8Ggc+J0QPjMD6C433QQ/edZRNW3LVcgGfJi08t2M92xv9ibo2s 4AAFK6SPoLFx/PiQbojEk12bK27S2LtNC70UR/u8YieQW4i3fENlCVPGQDKuZTCUwY7tJY9BO6dGa Csp1bDcA==; Received: from [2601:1c0:6280:3f0::3ba4] by casper.infradead.org with esmtpsa (Exim 4.94 #2 (Red Hat Linux)) id 1lOXJJ-009RYN-IB; Tue, 23 Mar 2021 03:02:39 +0000 Subject: Re: [PATCH] iio: dac: Rudimentary typo fix To: Bhaskar Chowdhury , lars@metafoo.de, Michael.Hennerich@analog.com, jic23@kernel.org, pmeerw@pmeerw.net, linux-iio@vger.kernel.org, linux-kernel@vger.kernel.org References: <20210323012215.451075-1-unixbhaskar@gmail.com> From: Randy Dunlap Message-ID: Date: Mon, 22 Mar 2021 20:02:22 -0700 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.8.0 MIME-Version: 1.0 In-Reply-To: <20210323012215.451075-1-unixbhaskar@gmail.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 3/22/21 6:22 PM, Bhaskar Chowdhury wrote: > > s/concurent/concurrent/ > > Signed-off-by: Bhaskar Chowdhury Acked-by: Randy Dunlap > --- > drivers/iio/dac/ad5766.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/iio/dac/ad5766.c b/drivers/iio/dac/ad5766.c > index ef1618ea6a20..79837a4b3a41 100644 > --- a/drivers/iio/dac/ad5766.c > +++ b/drivers/iio/dac/ad5766.c > @@ -89,7 +89,7 @@ static const char * const ad5766_dither_scales[] = { > /** > * struct ad5766_state - driver instance specific data > * @spi: SPI device > - * @lock: Lock used to restrict concurent access to SPI device > + * @lock: Lock used to restrict concurrent access to SPI device > * @chip_info: Chip model specific constants > * @gpio_reset: Reset GPIO, used to reset the device > * @crt_range: Current selected output range > -- -- ~Randy