diff options
author | Takashi Iwai <tiwai@suse.de> | 2025-06-26 07:59:33 +0200 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2025-06-26 07:59:33 +0200 |
commit | 346bd8a977fc559ef41099f727cdb0805f66bd10 (patch) | |
tree | ea2304801566b4a498957a5be469be8e0cc51686 /drivers/net/netconsole.c | |
parent | 5e9571750c4e53d16727a04159455c693d7b31cb (diff) | |
parent | 6c038b58a2dc5a008c7e7a1297f5aaa4deaaaa7e (diff) |
Merge tag 'asoc-fix-v6.16-rc3' of https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linus
ASoC: Fixes for v6.16
A small collection of fixes, the main one being a fix for resume from
hibernation on AMD systems, plus a few new quirk entries for AMD
systems.
Diffstat (limited to 'drivers/net/netconsole.c')
-rw-r--r-- | drivers/net/netconsole.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/net/netconsole.c b/drivers/net/netconsole.c index 4289ccd3e41b..176935a8645f 100644 --- a/drivers/net/netconsole.c +++ b/drivers/net/netconsole.c @@ -1252,7 +1252,6 @@ static int sysdata_append_release(struct netconsole_target *nt, int offset) */ static int prepare_extradata(struct netconsole_target *nt) { - u32 fields = SYSDATA_CPU_NR | SYSDATA_TASKNAME; int extradata_len; /* userdata was appended when configfs write helper was called @@ -1260,7 +1259,7 @@ static int prepare_extradata(struct netconsole_target *nt) */ extradata_len = nt->userdata_length; - if (!(nt->sysdata_fields & fields)) + if (!nt->sysdata_fields) goto out; if (nt->sysdata_fields & SYSDATA_CPU_NR) |