public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* ehci post 3.0: new section mismatch of ehci_bios_handoff() to ehci_dmi_nohandoff_table
@ 2011-08-05 15:01 Stefan Richter
  2011-08-09 14:43 ` Borislav Petkov
  0 siblings, 1 reply; 3+ messages in thread
From: Stefan Richter @ 2011-08-05 15:01 UTC (permalink / raw)
  To: linux-usb
  Cc: Anisse Astier, Sarah Sharp, Greg Kroah-Hartman, Arnaud Lacombe,
	linux-kernel

Hi,

commit 03c75362181b0b1d6a330e7cf8def10ba988dfbe "ehci: refactor pci quirk
to use standard dmi_check_system method" added a new section mismatch.  A
web search shows that there is already a fix for this from Arnaud.
https://patchwork.kernel.org/patch/996112/mbox/

Unless I am looking at a wrong git tree, the fix is not committed yet.

The section mismatch:

WARNING: drivers/built-in.o(.devinit.text+0x2e37): Section mismatch in
reference from the function ehci_bios_handoff() to the
variable .init.rodata:ehci_dmi_nohandoff_table
The function __devinit ehci_bios_handoff() references
a variable __initconst ehci_dmi_nohandoff_table.
If ehci_dmi_nohandoff_table is only used by ehci_bios_handoff then
annotate ehci_dmi_nohandoff_table with a matching annotation.

-- 
Stefan Richter
-=====-==-== =--- --=-=
http://arcgraph.de/sr/

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: ehci post 3.0: new section mismatch of ehci_bios_handoff() to ehci_dmi_nohandoff_table
  2011-08-05 15:01 ehci post 3.0: new section mismatch of ehci_bios_handoff() to ehci_dmi_nohandoff_table Stefan Richter
@ 2011-08-09 14:43 ` Borislav Petkov
  2011-08-09 14:51   ` Arnaud Lacombe
  0 siblings, 1 reply; 3+ messages in thread
From: Borislav Petkov @ 2011-08-09 14:43 UTC (permalink / raw)
  To: Stefan Richter
  Cc: linux-usb, Anisse Astier, Sarah Sharp, Greg Kroah-Hartman,
	Arnaud Lacombe, linux-kernel

On Fri, Aug 05, 2011 at 05:01:20PM +0200, Stefan Richter wrote:
> Hi,
> 
> commit 03c75362181b0b1d6a330e7cf8def10ba988dfbe "ehci: refactor pci quirk
> to use standard dmi_check_system method" added a new section mismatch.  A
> web search shows that there is already a fix for this from Arnaud.
> https://patchwork.kernel.org/patch/996112/mbox/
> 
> Unless I am looking at a wrong git tree, the fix is not committed yet.
> 
> The section mismatch:
> 
> WARNING: drivers/built-in.o(.devinit.text+0x2e37): Section mismatch in
> reference from the function ehci_bios_handoff() to the
> variable .init.rodata:ehci_dmi_nohandoff_table
> The function __devinit ehci_bios_handoff() references
> a variable __initconst ehci_dmi_nohandoff_table.
> If ehci_dmi_nohandoff_table is only used by ehci_bios_handoff then
> annotate ehci_dmi_nohandoff_table with a matching annotation.

Same here on -rc1 :(.

Can someone please pick up the fix already? Greg?

Thanks.

-- 
Regards/Gruss,
Boris.

Advanced Micro Devices GmbH
Einsteinring 24, 85609 Dornach
GM: Alberto Bozzo
Reg: Dornach, Landkreis Muenchen
HRB Nr. 43632 WEEE Registernr: 129 19551

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: ehci post 3.0: new section mismatch of ehci_bios_handoff() to ehci_dmi_nohandoff_table
  2011-08-09 14:43 ` Borislav Petkov
@ 2011-08-09 14:51   ` Arnaud Lacombe
  0 siblings, 0 replies; 3+ messages in thread
From: Arnaud Lacombe @ 2011-08-09 14:51 UTC (permalink / raw)
  To: Borislav Petkov
  Cc: Stefan Richter, linux-usb, Anisse Astier, Sarah Sharp,
	Greg Kroah-Hartman, linux-kernel

Hi,

On Tue, Aug 9, 2011 at 10:43 AM, Borislav Petkov <bp@amd64.org> wrote:
> On Fri, Aug 05, 2011 at 05:01:20PM +0200, Stefan Richter wrote:
>> Hi,
>>
>> commit 03c75362181b0b1d6a330e7cf8def10ba988dfbe "ehci: refactor pci quirk
>> to use standard dmi_check_system method" added a new section mismatch.  A
>> web search shows that there is already a fix for this from Arnaud.
>> https://patchwork.kernel.org/patch/996112/mbox/
>>
>> Unless I am looking at a wrong git tree, the fix is not committed yet.
>>
>> The section mismatch:
>>
>> WARNING: drivers/built-in.o(.devinit.text+0x2e37): Section mismatch in
>> reference from the function ehci_bios_handoff() to the
>> variable .init.rodata:ehci_dmi_nohandoff_table
>> The function __devinit ehci_bios_handoff() references
>> a variable __initconst ehci_dmi_nohandoff_table.
>> If ehci_dmi_nohandoff_table is only used by ehci_bios_handoff then
>> annotate ehci_dmi_nohandoff_table with a matching annotation.
>
> Same here on -rc1 :(.
>
> Can someone please pick up the fix already? Greg?
>
greg added my patch to his usb tree yesterday.

 - Arnaud

> Thanks.
>
> --
> Regards/Gruss,
> Boris.
>
> Advanced Micro Devices GmbH
> Einsteinring 24, 85609 Dornach
> GM: Alberto Bozzo
> Reg: Dornach, Landkreis Muenchen
> HRB Nr. 43632 WEEE Registernr: 129 19551
>

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2011-08-09 14:51 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-08-05 15:01 ehci post 3.0: new section mismatch of ehci_bios_handoff() to ehci_dmi_nohandoff_table Stefan Richter
2011-08-09 14:43 ` Borislav Petkov
2011-08-09 14:51   ` Arnaud Lacombe

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox