From: Andrew Morton <akpm@linux-foundation.org>
To: mm-commits@vger.kernel.org, gregkh@linuxfoundation.org,
error27@gmail.com, akpm@linux-foundation.org
Subject: [merged mm-nonmm-stable] dca-delete-unnecessary-variable.patch removed from -mm tree
Date: Wed, 05 Apr 2023 19:53:01 -0700 [thread overview]
Message-ID: <20230406025301.CC5EAC433D2@smtp.kernel.org> (raw)
The quilt patch titled
Subject: dca: delete unnecessary variable
has been removed from the -mm tree. Its filename was
dca-delete-unnecessary-variable.patch
This patch was dropped because it was merged into the mm-nonmm-stable branch
of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
------------------------------------------------------
From: Dan Carpenter <error27@gmail.com>
Subject: dca: delete unnecessary variable
Date: Mon, 27 Feb 2023 13:06:12 +0300
It's more readable to just pass NULL directly instead of using a variable
for that.
Link: https://lkml.kernel.org/r/Y/yAlDytLH0ZNLNz@kili
Signed-off-by: Dan Carpenter <error27@gmail.com>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---
drivers/dca/dca-core.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
--- a/drivers/dca/dca-core.c~dca-delete-unnecessary-variable
+++ a/drivers/dca/dca-core.c
@@ -294,9 +294,7 @@ EXPORT_SYMBOL_GPL(dca3_get_tag);
*/
u8 dca_get_tag(int cpu)
{
- struct device *dev = NULL;
-
- return dca_common_get_tag(dev, cpu);
+ return dca_common_get_tag(NULL, cpu);
}
EXPORT_SYMBOL_GPL(dca_get_tag);
_
Patches currently in -mm which might be from error27@gmail.com are
reply other threads:[~2023-04-06 2:53 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20230406025301.CC5EAC433D2@smtp.kernel.org \
--to=akpm@linux-foundation.org \
--cc=error27@gmail.com \
--cc=gregkh@linuxfoundation.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mm-commits@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.