* [PATCH 0/9] sh_eth: make driver build on any platform
[not found] ` <51B2765D.7030604@cogentembedded.com>
@ 2013-06-08 0:15 ` Sergei Shtylyov
2013-06-08 6:39 ` David Miller
0 siblings, 1 reply; 5+ messages in thread
From: Sergei Shtylyov @ 2013-06-08 0:15 UTC (permalink / raw)
To: linux-arm-kernel
On 06/08/2013 04:10 AM, Sergei Shtylyov wrote:
> Hello.
>
> On 06/08/2013 03:51 AM, Sergei Shtylyov wrote:
>
>> This series of 9 patches are against Dave's 'net-next.git'
>> repository.
>> The series deals with the #ifdef'fery around SoC support
>> code/data in the
>> 'sh_eth' driver. It doesn't yet get rid of all the #ifdef's: 3 are
>> left, 1 of
>> them still hinders ARM multiplatform build -- I'll try to deal with
>> it next
>> week.
>>
>> [1/9] sh_eth: create initial ID table
>> [2/9] sh_eth: get SH771x support out of #ifdef
>> [3/9] sh_eth: get SH7619 support out of #ifdef
>> [4/9] sh_eth: get R8A7740 support out of #ifdef
>> [5/9] sh_eth: get SH77{34|63} support out of #ifdef
>> [6/9] sh_eth: get SH7757 support out of #ifdef
>> [7/9] sh_eth: get SH7724 support out of #ifdef
>> [8/9] sh_eth: get R8A777x support out of #ifdef
>> [9/9] sh_eth: remove dependencies from Kconfig
>>
>
> Sorry, Paul, forgot to include you into the CC list on most of the
> patches
> and the cover letter. Please look for the patches on linux-sh and ACK
> them
> if you deem necessary.
Also, forgot to CC Simon, Magnus, Russell and LAKML on some patches.
Too much haste, forgot to run scripts/get_maintainer.pl before sending
out patches...
WBR, Sergei
>
> WBR, Serge
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 0/9] sh_eth: make driver build on any platform
2013-06-08 0:15 ` [PATCH 0/9] sh_eth: make driver build on any platform Sergei Shtylyov
@ 2013-06-08 6:39 ` David Miller
2013-06-08 13:11 ` Sergei Shtylyov
0 siblings, 1 reply; 5+ messages in thread
From: David Miller @ 2013-06-08 6:39 UTC (permalink / raw)
To: linux-arm-kernel
From: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
Date: Sat, 08 Jun 2013 04:15:35 +0400
> On 06/08/2013 04:10 AM, Sergei Shtylyov wrote:
>> Hello.
>>
>> On 06/08/2013 03:51 AM, Sergei Shtylyov wrote:
>>
>>> This series of 9 patches are against Dave's 'net-next.git' repository.
>>> The series deals with the #ifdef'fery around SoC support code/data in
>>> the
>>> 'sh_eth' driver. It doesn't yet get rid of all the #ifdef's: 3 are
>>> left, 1 of
>>> them still hinders ARM multiplatform build -- I'll try to deal with it
>>> next
>>> week.
>>>
>>> [1/9] sh_eth: create initial ID table
>>> [2/9] sh_eth: get SH771x support out of #ifdef
>>> [3/9] sh_eth: get SH7619 support out of #ifdef
>>> [4/9] sh_eth: get R8A7740 support out of #ifdef
>>> [5/9] sh_eth: get SH77{34|63} support out of #ifdef
>>> [6/9] sh_eth: get SH7757 support out of #ifdef
>>> [7/9] sh_eth: get SH7724 support out of #ifdef
>>> [8/9] sh_eth: get R8A777x support out of #ifdef
>>> [9/9] sh_eth: remove dependencies from Kconfig
>>>
>>
>> Sorry, Paul, forgot to include you into the CC list on most of the
>> patches
>> and the cover letter. Please look for the patches on linux-sh and ACK
>> them
>> if you deem necessary.
>
> Also, forgot to CC Simon, Magnus, Russell and LAKML on some patches.
> Too much haste, forgot to run scripts/get_maintainer.pl before sending
> out patches...
I'll apply this solely because it finally allows me to build test this
driver on x86-64.
:-)
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 0/9] sh_eth: make driver build on any platform
2013-06-08 6:39 ` David Miller
@ 2013-06-08 13:11 ` Sergei Shtylyov
2013-06-08 13:24 ` Sergei Shtylyov
2013-06-08 18:18 ` David Miller
0 siblings, 2 replies; 5+ messages in thread
From: Sergei Shtylyov @ 2013-06-08 13:11 UTC (permalink / raw)
To: linux-arm-kernel
Hello.
On 08-06-2013 10:39, David Miller wrote:
>>>> This series of 9 patches are against Dave's 'net-next.git' repository.
>>>> The series deals with the #ifdef'fery around SoC support code/data in
>>>> the
>>>> 'sh_eth' driver. It doesn't yet get rid of all the #ifdef's: 3 are
>>>> left, 1 of
>>>> them still hinders ARM multiplatform build -- I'll try to deal with it
>>>> next
>>>> week.
>>>> [1/9] sh_eth: create initial ID table
>>>> [2/9] sh_eth: get SH771x support out of #ifdef
>>>> [3/9] sh_eth: get SH7619 support out of #ifdef
>>>> [4/9] sh_eth: get R8A7740 support out of #ifdef
>>>> [5/9] sh_eth: get SH77{34|63} support out of #ifdef
>>>> [6/9] sh_eth: get SH7757 support out of #ifdef
>>>> [7/9] sh_eth: get SH7724 support out of #ifdef
>>>> [8/9] sh_eth: get R8A777x support out of #ifdef
>>>> [9/9] sh_eth: remove dependencies from Kconfig
>>> Sorry, Paul, forgot to include you into the CC list on most of the
>>> patches
>>> and the cover letter. Please look for the patches on linux-sh and ACK
>>> them
>>> if you deem necessary.
>> Also, forgot to CC Simon, Magnus, Russell and LAKML on some patches.
>> Too much haste, forgot to run scripts/get_maintainer.pl before sending
>> out patches...
> I'll apply this solely because it finally allows me to build test this
> driver on x86-64.
Hold on please. It just occured to me that the series won't be
bisectable on anything but R-Car CPUs (I checked it only on R8A7779)
since I forgot that 'sh_eth_my_cpu_data' variable should be always
available in any configuuration until the last patch (so the patch #1 is
somewhat incomplete). I'll respin the series today and resend.
WBR, Sergei
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 0/9] sh_eth: make driver build on any platform
2013-06-08 13:11 ` Sergei Shtylyov
@ 2013-06-08 13:24 ` Sergei Shtylyov
2013-06-08 18:18 ` David Miller
1 sibling, 0 replies; 5+ messages in thread
From: Sergei Shtylyov @ 2013-06-08 13:24 UTC (permalink / raw)
To: linux-arm-kernel
On 08-06-2013 17:11, Sergei Shtylyov wrote:
>>>>> This series of 9 patches are against Dave's 'net-next.git'
>>>>> repository.
>>>>> The series deals with the #ifdef'fery around SoC support
>>>>> code/data in
>>>>> the
>>>>> 'sh_eth' driver. It doesn't yet get rid of all the #ifdef's: 3 are
>>>>> left, 1 of
>>>>> them still hinders ARM multiplatform build -- I'll try to deal with it
>>>>> next
>>>>> week.
>>>>> [1/9] sh_eth: create initial ID table
>>>>> [2/9] sh_eth: get SH771x support out of #ifdef
>>>>> [3/9] sh_eth: get SH7619 support out of #ifdef
>>>>> [4/9] sh_eth: get R8A7740 support out of #ifdef
>>>>> [5/9] sh_eth: get SH77{34|63} support out of #ifdef
>>>>> [6/9] sh_eth: get SH7757 support out of #ifdef
>>>>> [7/9] sh_eth: get SH7724 support out of #ifdef
>>>>> [8/9] sh_eth: get R8A777x support out of #ifdef
>>>>> [9/9] sh_eth: remove dependencies from Kconfig
>>>> Sorry, Paul, forgot to include you into the CC list on most of the
>>>> patches
>>>> and the cover letter. Please look for the patches on linux-sh and ACK
>>>> them
>>>> if you deem necessary.
>>> Also, forgot to CC Simon, Magnus, Russell and LAKML on some patches.
>>> Too much haste, forgot to run scripts/get_maintainer.pl before sending
>>> out patches...
>> I'll apply this solely because it finally allows me to build test this
>> driver on x86-64.
> Hold on please. It just occured to me that the series won't be
> bisectable on anything but R-Car CPUs (I checked it only on R8A7779)
> since I forgot that 'sh_eth_my_cpu_data' variable should be always
> available in any configuuration until the last patch (so the patch #1 is
> somewhat incomplete). I'll respin the series today and resend.
Oh, you've already applied it! Well, at least the result is
buildable on all arches. :-)
You're sometimes too quick though. :-)
WBR, Sergei
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 0/9] sh_eth: make driver build on any platform
2013-06-08 13:11 ` Sergei Shtylyov
2013-06-08 13:24 ` Sergei Shtylyov
@ 2013-06-08 18:18 ` David Miller
1 sibling, 0 replies; 5+ messages in thread
From: David Miller @ 2013-06-08 18:18 UTC (permalink / raw)
To: linux-arm-kernel
From: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
Date: Sat, 08 Jun 2013 17:11:18 +0400
> Hold on please. It just occured to me that the series won't be
> bisectable on anything but R-Car CPUs (I checked it only on R8A7779)
> since I forgot that 'sh_eth_my_cpu_data' variable should be always
> available in any configuuration until the last patch (so the patch #1
> is somewhat incomplete). I'll respin the series today and resend.
Too late, it's already pushed to my tree and at that point it's permanent.
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2013-06-08 18:18 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <201306080351.39018.sergei.shtylyov@cogentembedded.com>
[not found] ` <51B2765D.7030604@cogentembedded.com>
2013-06-08 0:15 ` [PATCH 0/9] sh_eth: make driver build on any platform Sergei Shtylyov
2013-06-08 6:39 ` David Miller
2013-06-08 13:11 ` Sergei Shtylyov
2013-06-08 13:24 ` Sergei Shtylyov
2013-06-08 18:18 ` David Miller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).