2023-06-04 23:12:25

by Stephen Rothwell

[permalink] [raw]
Subject: linux-next: build failure after merge of the asahi-soc tree

Hi all,

After merging the asahi-soc tree, today's linux-next build (x86_64
allmodconfig) failed like this:

In file included from include/linux/io.h:13,
from drivers/soc/apple/mailbox.c:22:
drivers/soc/apple/mailbox.c: In function 'apple_mbox_send':
drivers/soc/apple/mailbox.c:151:24: error: implicit declaration of function 'FIELD_PREP' [-Werror=implicit-function-declaration]
151 | writeq_relaxed(FIELD_PREP(APPLE_MBOX_MSG1_MSG, msg.msg1),
| ^~~~~~~~~~
arch/x86/include/asm/io.h:103:42: note: in definition of macro 'writeq_relaxed'
103 | #define writeq_relaxed(v, a) __writeq(v, a)
| ^
drivers/soc/apple/mailbox.c: In function 'apple_mbox_poll_locked':
drivers/soc/apple/mailbox.c:188:28: error: implicit declaration of function 'FIELD_GET' [-Werror=implicit-function-declaration]
188 | msg.msg1 = FIELD_GET(
| ^~~~~~~~~

Caused by commit

0d1f3f7f8486 ("soc: apple: mailbox: Add ASC/M3 mailbox driver")

I have used the asshi-soc tree from next-20230602 for today.

--
Cheers,
Stephen Rothwell


Attachments:
(No filename) (499.00 B)
OpenPGP digital signature

2023-06-04 23:59:04

by Hector Martin

[permalink] [raw]
Subject: Re: linux-next: build failure after merge of the asahi-soc tree

Hi!

Thanks, looks like a missing include. I'll fix it up when I get home in a bit. Sorry for the noise!

(And apologies for top-posting, I'm on mobile right now)

On June 5, 2023 7:58:16 AM GMT+09:00, Stephen Rothwell <[email protected]> wrote:
>Hi all,
>
>After merging the asahi-soc tree, today's linux-next build (x86_64
>allmodconfig) failed like this:
>
>In file included from include/linux/io.h:13,
> from drivers/soc/apple/mailbox.c:22:
>drivers/soc/apple/mailbox.c: In function 'apple_mbox_send':
>drivers/soc/apple/mailbox.c:151:24: error: implicit declaration of function 'FIELD_PREP' [-Werror=implicit-function-declaration]
> 151 | writeq_relaxed(FIELD_PREP(APPLE_MBOX_MSG1_MSG, msg.msg1),
> | ^~~~~~~~~~
>arch/x86/include/asm/io.h:103:42: note: in definition of macro 'writeq_relaxed'
> 103 | #define writeq_relaxed(v, a) __writeq(v, a)
> | ^
>drivers/soc/apple/mailbox.c: In function 'apple_mbox_poll_locked':
>drivers/soc/apple/mailbox.c:188:28: error: implicit declaration of function 'FIELD_GET' [-Werror=implicit-function-declaration]
> 188 | msg.msg1 = FIELD_GET(
> | ^~~~~~~~~
>
>Caused by commit
>
> 0d1f3f7f8486 ("soc: apple: mailbox: Add ASC/M3 mailbox driver")
>
>I have used the asshi-soc tree from next-20230602 for today.
>

- Hector

2023-06-05 01:26:00

by Hector Martin

[permalink] [raw]
Subject: Re: linux-next: build failure after merge of the asahi-soc tree

On 05/06/2023 08.11, Hector Martin "marcan" wrote:
> Hi!
>
> Thanks, looks like a missing include. I'll fix it up when I get home in a bit. Sorry for the noise!
>
> (And apologies for top-posting, I'm on mobile right now)
>

Should be fixed now, thanks again!

TIL that allmodconfig includes COMPILE_TEST. Makes sense though. I don't
build test for x86 often, and I think on arm64 we get bitfield.h pulled
in via common headers, so this isn't the first time I've missed this one...

> On June 5, 2023 7:58:16 AM GMT+09:00, Stephen Rothwell <[email protected]> wrote:
>> Hi all,
>>
>> After merging the asahi-soc tree, today's linux-next build (x86_64
>> allmodconfig) failed like this:
>>
>> In file included from include/linux/io.h:13,
>> from drivers/soc/apple/mailbox.c:22:
>> drivers/soc/apple/mailbox.c: In function 'apple_mbox_send':
>> drivers/soc/apple/mailbox.c:151:24: error: implicit declaration of function 'FIELD_PREP' [-Werror=implicit-function-declaration]
>> 151 | writeq_relaxed(FIELD_PREP(APPLE_MBOX_MSG1_MSG, msg.msg1),
>> | ^~~~~~~~~~
>> arch/x86/include/asm/io.h:103:42: note: in definition of macro 'writeq_relaxed'
>> 103 | #define writeq_relaxed(v, a) __writeq(v, a)
>> | ^
>> drivers/soc/apple/mailbox.c: In function 'apple_mbox_poll_locked':
>> drivers/soc/apple/mailbox.c:188:28: error: implicit declaration of function 'FIELD_GET' [-Werror=implicit-function-declaration]
>> 188 | msg.msg1 = FIELD_GET(
>> | ^~~~~~~~~
>>
>> Caused by commit
>>
>> 0d1f3f7f8486 ("soc: apple: mailbox: Add ASC/M3 mailbox driver")
>>
>> I have used the asshi-soc tree from next-20230602 for today.
>>
>
> - Hector

- Hector