From: Hans de Goede <hdegoede@redhat.com>
To: Randy Dunlap <rdunlap@infradead.org>,
Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
Cc: Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
"open list:X86 PLATFORM DRIVERS"
<platform-driver-x86@vger.kernel.org>,
Stephen Rothwell <sfr@canb.auug.org.au>,
Linux Next Mailing List <linux-next@vger.kernel.org>
Subject: Re: linux-next: Tree for Aug 23 (drivers/platform/x86/amd/pmc.c)
Date: Sat, 26 Aug 2023 12:09:17 +0200 [thread overview]
Message-ID: <613570c6-7f5d-778c-183a-4aeb967c69d8@redhat.com> (raw)
In-Reply-To: <5181685c-29d8-22a4-a2d7-682f26e2e031@infradead.org>
Hi All,
On 8/24/23 04:06, Randy Dunlap wrote:
>
>
> On 8/22/23 23:14, Stephen Rothwell wrote:
>> Hi all,
>>
>> Changes since 20230822:
>>
>> New tree: drm-ci
>>
>
> on x86_64:
> # CONFIG_SUSPEND is not set
> # CONFIG_PM is not set
>
>
> ../drivers/platform/x86/amd/pmc.c:878:15: error: variable ‘amd_pmc_s2idle_dev_ops’ has initializer but incomplete type
> 878 | static struct acpi_s2idle_dev_ops amd_pmc_s2idle_dev_ops = {
> | ^~~~~~~~~~~~~~~~~~~
> ../drivers/platform/x86/amd/pmc.c:879:10: error: ‘struct acpi_s2idle_dev_ops’ has no member named ‘prepare’
> 879 | .prepare = amd_pmc_s2idle_prepare,
> | ^~~~~~~
> ../drivers/platform/x86/amd/pmc.c:879:20: warning: excess elements in struct initializer
> 879 | .prepare = amd_pmc_s2idle_prepare,
> | ^~~~~~~~~~~~~~~~~~~~~~
> ../drivers/platform/x86/amd/pmc.c:879:20: note: (near initialization for ‘amd_pmc_s2idle_dev_ops’)
> ../drivers/platform/x86/amd/pmc.c:880:10: error: ‘struct acpi_s2idle_dev_ops’ has no member named ‘check’
> 880 | .check = amd_pmc_s2idle_check,
> | ^~~~~
> ../drivers/platform/x86/amd/pmc.c:880:18: warning: excess elements in struct initializer
> 880 | .check = amd_pmc_s2idle_check,
> | ^~~~~~~~~~~~~~~~~~~~
> ../drivers/platform/x86/amd/pmc.c:880:18: note: (near initialization for ‘amd_pmc_s2idle_dev_ops’)
> ../drivers/platform/x86/amd/pmc.c:881:10: error: ‘struct acpi_s2idle_dev_ops’ has no member named ‘restore’
> 881 | .restore = amd_pmc_s2idle_restore,
> | ^~~~~~~
> ../drivers/platform/x86/amd/pmc.c:881:20: warning: excess elements in struct initializer
> 881 | .restore = amd_pmc_s2idle_restore,
> | ^~~~~~~~~~~~~~~~~~~~~~
> ../drivers/platform/x86/amd/pmc.c:881:20: note: (near initialization for ‘amd_pmc_s2idle_dev_ops’)
> CC [M] drivers/staging/iio/impedance-analyzer/ad5933.o
> ../drivers/platform/x86/amd/pmc.c: In function ‘amd_pmc_probe’:
> ../drivers/platform/x86/amd/pmc.c:1070:23: error: implicit declaration of function ‘acpi_register_lps0_dev’; did you mean ‘acpi_register_gsi’? [-Werror=implicit-function-declaration]
> 1070 | err = acpi_register_lps0_dev(&amd_pmc_s2idle_dev_ops);
> | ^~~~~~~~~~~~~~~~~~~~~~
> | acpi_register_gsi
> CC [M] drivers/staging/rts5208/rtsx_scsi.o
> ../drivers/platform/x86/amd/pmc.c: In function ‘amd_pmc_remove’:
> ../drivers/platform/x86/amd/pmc.c:1091:17: error: implicit declaration of function ‘acpi_unregister_lps0_dev’; did you mean ‘acpi_unregister_gsi’? [-Werror=implicit-function-declaration]
> 1091 | acpi_unregister_lps0_dev(&amd_pmc_s2idle_dev_ops);
> | ^~~~~~~~~~~~~~~~~~~~~~~~
> | acpi_unregister_gsi
> ../drivers/platform/x86/amd/pmc.c: At top level:
> ../drivers/platform/x86/amd/pmc.c:878:35: error: storage size of ‘amd_pmc_s2idle_dev_ops’ isn’t known
> 878 | static struct acpi_s2idle_dev_ops amd_pmc_s2idle_dev_ops = {
> | ^~~~~~~~~~~~~~~~~~~~~~
>
>
> Full randconfig file is attached.
Shyam, can you look into fixing this please?
Regards,
Hans
prev parent reply other threads:[~2023-08-26 10:10 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-08-23 6:14 linux-next: Tree for Aug 23 Stephen Rothwell
2023-08-24 1:32 ` linux-next: Tree for Aug 23 (arch/loongarch/mm/kasan_init.o) Randy Dunlap
2023-08-24 1:35 ` linux-next: Tree for Aug 23 (drivers/perf/arm_pmuv3.o) Randy Dunlap
2023-08-24 1:38 ` linux-next: Tree for Aug 23 (drivers/iio/imu/bno055/bno055.o) Randy Dunlap
2023-08-24 1:45 ` linux-next: Tree for Aug 23 (hyperv) Randy Dunlap
2023-08-24 3:14 ` Wei Liu
2023-08-24 4:33 ` Randy Dunlap
2023-08-24 2:06 ` linux-next: Tree for Aug 23 (drivers/platform/x86/amd/pmc.c) Randy Dunlap
2023-08-26 10:09 ` Hans de Goede [this message]
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=613570c6-7f5d-778c-183a-4aeb967c69d8@redhat.com \
--to=hdegoede@redhat.com \
--cc=Shyam-sundar.S-k@amd.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-next@vger.kernel.org \
--cc=platform-driver-x86@vger.kernel.org \
--cc=rdunlap@infradead.org \
--cc=sfr@canb.auug.org.au \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®