[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <1d0478b2-efdf-4c1f-bf2c-a5cb2214168c@redhat.com>
Date: Wed, 11 Sep 2024 14:20:48 +0200
From: Hans de Goede <hdegoede@...hat.com>
To: Li Zetao <lizetao1@...wei.com>, mchehab@...nel.org, davem@...emloft.net,
edumazet@...gle.com, kuba@...nel.org, pabeni@...hat.com, wens@...e.org,
jernej.skrabec@...il.com, samuel@...lland.org, heiko@...ech.de,
yisen.zhuang@...wei.com, salil.mehta@...wei.com, hauke@...ke-m.de,
alexandre.torgue@...s.st.com, joabreu@...opsys.com,
mcoquelin.stm32@...il.com, wellslutw@...il.com, radhey.shyam.pandey@....com,
michal.simek@....com, ilpo.jarvinen@...ux.intel.com, ruanjinjie@...wei.com,
hverkuil-cisco@...all.nl, u.kleine-koenig@...gutronix.de,
jacky_chou@...eedtech.com, jacob.e.keller@...el.com
Cc: linux-media@...r.kernel.org, netdev@...r.kernel.org,
linux-arm-kernel@...ts.infradead.org, linux-sunxi@...ts.linux.dev,
linux-rockchip@...ts.infradead.org,
linux-stm32@...md-mailman.stormreply.com, platform-driver-x86@...r.kernel.org
Subject: Re: [PATCH -next v2] platform/olpc: Remove redundant null pointer
checks in olpc_ec_setup_debugfs()
Hi,
On 9/7/24 5:09 AM, Li Zetao wrote:
> Since the debugfs_create_dir() never returns a null pointer, checking
> the return value for a null pointer is redundant. Since
> debugfs_create_file() can deal with a ERR_PTR() style pointer, drop
> the check.
>
> Signed-off-by: Li Zetao <lizetao1@...wei.com>
Thank you for your patch, I've applied this patch to my review-hans
branch:
https://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git/log/?h=review-hans
Note it will show up in my review-hans branch once I've pushed my
local branch there, which might take a while.
Once I've run some tests on this branch the patches there will be
added to the platform-drivers-x86/for-next branch and eventually
will be included in the pdx86 pull-request to Linus for the next
merge-window.
Regards,
Hans
> ---
> v1 -> v2:
> v1:
> https://lore.kernel.org/all/20240903143714.2004947-1-lizetao1@huawei.com/
>
> drivers/platform/olpc/olpc-ec.c | 3 ---
> 1 file changed, 3 deletions(-)
>
> diff --git a/drivers/platform/olpc/olpc-ec.c b/drivers/platform/olpc/olpc-ec.c
> index 921520475ff6..48e9861bb571 100644
> --- a/drivers/platform/olpc/olpc-ec.c
> +++ b/drivers/platform/olpc/olpc-ec.c
> @@ -332,9 +332,6 @@ static struct dentry *olpc_ec_setup_debugfs(void)
> struct dentry *dbgfs_dir;
>
> dbgfs_dir = debugfs_create_dir("olpc-ec", NULL);
> - if (IS_ERR_OR_NULL(dbgfs_dir))
> - return NULL;
> -
> debugfs_create_file("cmd", 0600, dbgfs_dir, NULL, &ec_dbgfs_ops);
>
> return dbgfs_dir;
Powered by blists - more mailing lists