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 072BAC433EF for ; Sat, 19 Mar 2022 00:29:38 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S241661AbiCSAa4 (ORCPT ); Fri, 18 Mar 2022 20:30:56 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:57688 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232842AbiCSAax (ORCPT ); Fri, 18 Mar 2022 20:30:53 -0400 Received: from mail-io1-xd2a.google.com (mail-io1-xd2a.google.com [IPv6:2607:f8b0:4864:20::d2a]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 8DCA31C1EDE for ; Fri, 18 Mar 2022 17:29:34 -0700 (PDT) Received: by mail-io1-xd2a.google.com with SMTP id x4so11085869iop.7 for ; Fri, 18 Mar 2022 17:29:34 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=+RZwrR6jIx0T4lWYA/TV52jgdAigjInQkREvX8FafCg=; b=XMnbvCZBwdmj9tiI6hn+oGcWQ7U13yopenWSJ0tfhytZBMb1lSQ9UeQG7NvNhuOVkQ Db3O/4l3kR1X3yiI2jx8kKOzMsNutB70NedfSq4L/jIxQBIdadmWCE7qB2geEx+lxEaN 6t9GIw9/OgpeibYkfiDMQPIFlOvBLprPajgIuKbWzAc82ADxrEnGDS5ptfz9GYi/WNgM bQPp4zQfC3JW+AtoxlK3xXai4kEaY+9c6l048dM9uOAbjHq0TKrp4SWaawlq2rFEXbm9 bXnMcefkfVRyrQ/ik1E4HMyu8AzaPr2GzcGiShExFfKEA59bedLFYMM85EpkQDgufvcS kjcA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=+RZwrR6jIx0T4lWYA/TV52jgdAigjInQkREvX8FafCg=; b=UfTYqi+LIgsL0gv6pW0lTdtlwdC4RImpv8PNmRfAexe6CqUPaiNWLCs3OsJYLgrK/4 yNLnzz9a0ni+YN1o06q0lMmDefH8Kn4empthqZTfT0csA/ttwQquIg+tGPwtVkJAXQwZ 0j/50i1O2sE449B2/+Y1pwDkqtpCDdM6/+uBBr9brX6PtvWH8iv3SwnQ5f3h5IYLsHl7 8YSQh8cMPi/JCDp4Y2hqWqrGodUnsVmByCBAN6+TUqiwXDQtagHZPRW/4FJBfUoBqBHV u1Y3NOW9WeUB1DcnOYu3wcgYCWCrKFv4GSnty9FKRub93n1FG+5XXOdV5I3YINWv2Dap FIQw== X-Gm-Message-State: AOAM530Smid1nxA5CkKW+BQuZ9xgiLhNVRmHPX5NoHWI8KmwNoUKPYLM /zIHrP3BsWfDDWIo2SjipDAQl40Dxw5N1HzVY4JIKDk1hsA= X-Google-Smtp-Source: ABdhPJwrCWMHPIPFSz6GEOZnDmrazHI7ghETr9Mds+Gs9ndwMm7HrbH2rK97cIPOjwNKyJ5X1WOFJo+IOB48b0DmNaQ= X-Received: by 2002:a05:6638:259:b0:319:e237:b6f9 with SMTP id w25-20020a056638025900b00319e237b6f9mr6080758jaq.186.1647649773944; Fri, 18 Mar 2022 17:29:33 -0700 (PDT) MIME-Version: 1.0 References: <20220308151119.48412-1-andriy.shevchenko@linux.intel.com> <20220308151119.48412-4-andriy.shevchenko@linux.intel.com> In-Reply-To: <20220308151119.48412-4-andriy.shevchenko@linux.intel.com> From: Miguel Ojeda Date: Sat, 19 Mar 2022 01:29:23 +0100 Message-ID: Subject: Re: [PATCH v1 4/4] auxdisplay: lcd2s: Use array size explicitly in lcd2s_gotoxy() To: Andy Shevchenko Cc: Miguel Ojeda , linux-kernel Content-Type: text/plain; charset="UTF-8" Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Andy, On Tue, Mar 8, 2022 at 4:11 PM Andy Shevchenko wrote: > > Currently the reading of the onstack array is confusing since two > out of three members are of different types. Let it be more clear > by explicitly set the array size, so everybody will understand that > parameters are cast to the type of the array. I am not sure what you mean by this, could you please elaborate why is it more clear if the size is given? Cheers, Miguel