* [U-Boot] [PATCH v1 1/1] x86: Synchronize list of x86 subarchitectures (update bootparam.h)
@ 2017-01-08 20:51 Andy Shevchenko
2017-01-09 14:07 ` Stefan Roese
2017-01-17 1:46 ` Bin Meng
0 siblings, 2 replies; 4+ messages in thread
From: Andy Shevchenko @ 2017-01-08 20:51 UTC (permalink / raw)
To: u-boot
Basically rename X86_SUBARCH_MRST to X86_SUBARCH_INTEL_MID to be more specific.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
---
arch/x86/include/asm/bootparam.h | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/arch/x86/include/asm/bootparam.h b/arch/x86/include/asm/bootparam.h
index a373a79886..48b138c6b0 100644
--- a/arch/x86/include/asm/bootparam.h
+++ b/arch/x86/include/asm/bootparam.h
@@ -117,7 +117,8 @@ enum {
X86_SUBARCH_PC = 0,
X86_SUBARCH_LGUEST,
X86_SUBARCH_XEN,
- X86_SUBARCH_MRST,
+ X86_SUBARCH_INTEL_MID,
+ X86_SUBARCH_CE4100,
X86_NR_SUBARCHS,
};
#endif /* _ASM_X86_BOOTPARAM_H */
--
2.11.0
^ permalink raw reply related [flat|nested] 4+ messages in thread* [U-Boot] [PATCH v1 1/1] x86: Synchronize list of x86 subarchitectures (update bootparam.h)
2017-01-08 20:51 [U-Boot] [PATCH v1 1/1] x86: Synchronize list of x86 subarchitectures (update bootparam.h) Andy Shevchenko
@ 2017-01-09 14:07 ` Stefan Roese
2017-01-17 1:46 ` Bin Meng
1 sibling, 0 replies; 4+ messages in thread
From: Stefan Roese @ 2017-01-09 14:07 UTC (permalink / raw)
To: u-boot
(adding Simon and Bin to cc)
On 08.01.2017 21:51, Andy Shevchenko wrote:
> Basically rename X86_SUBARCH_MRST to X86_SUBARCH_INTEL_MID to be more specific.
>
> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
> ---
> arch/x86/include/asm/bootparam.h | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/arch/x86/include/asm/bootparam.h b/arch/x86/include/asm/bootparam.h
> index a373a79886..48b138c6b0 100644
> --- a/arch/x86/include/asm/bootparam.h
> +++ b/arch/x86/include/asm/bootparam.h
> @@ -117,7 +117,8 @@ enum {
> X86_SUBARCH_PC = 0,
> X86_SUBARCH_LGUEST,
> X86_SUBARCH_XEN,
> - X86_SUBARCH_MRST,
> + X86_SUBARCH_INTEL_MID,
> + X86_SUBARCH_CE4100,
> X86_NR_SUBARCHS,
> };
> #endif /* _ASM_X86_BOOTPARAM_H */
>
Reviewed-by: Stefan Roese <sr@denx.de>
Thanks,
Stefan
^ permalink raw reply [flat|nested] 4+ messages in thread* [U-Boot] [PATCH v1 1/1] x86: Synchronize list of x86 subarchitectures (update bootparam.h)
2017-01-08 20:51 [U-Boot] [PATCH v1 1/1] x86: Synchronize list of x86 subarchitectures (update bootparam.h) Andy Shevchenko
2017-01-09 14:07 ` Stefan Roese
@ 2017-01-17 1:46 ` Bin Meng
2017-01-17 1:48 ` Bin Meng
1 sibling, 1 reply; 4+ messages in thread
From: Bin Meng @ 2017-01-17 1:46 UTC (permalink / raw)
To: u-boot
On Mon, Jan 9, 2017 at 4:51 AM, Andy Shevchenko
<andriy.shevchenko@linux.intel.com> wrote:
> Basically rename X86_SUBARCH_MRST to X86_SUBARCH_INTEL_MID to be more specific.
>
> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
> ---
> arch/x86/include/asm/bootparam.h | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
^ permalink raw reply [flat|nested] 4+ messages in thread
* [U-Boot] [PATCH v1 1/1] x86: Synchronize list of x86 subarchitectures (update bootparam.h)
2017-01-17 1:46 ` Bin Meng
@ 2017-01-17 1:48 ` Bin Meng
0 siblings, 0 replies; 4+ messages in thread
From: Bin Meng @ 2017-01-17 1:48 UTC (permalink / raw)
To: u-boot
On Tue, Jan 17, 2017 at 9:46 AM, Bin Meng <bmeng.cn@gmail.com> wrote:
> On Mon, Jan 9, 2017 at 4:51 AM, Andy Shevchenko
> <andriy.shevchenko@linux.intel.com> wrote:
>> Basically rename X86_SUBARCH_MRST to X86_SUBARCH_INTEL_MID to be more specific.
>>
>> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
>> ---
>> arch/x86/include/asm/bootparam.h | 3 ++-
>> 1 file changed, 2 insertions(+), 1 deletion(-)
>>
>
> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
applied to u-boot-x86, thanks!
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2017-01-17 1:48 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-01-08 20:51 [U-Boot] [PATCH v1 1/1] x86: Synchronize list of x86 subarchitectures (update bootparam.h) Andy Shevchenko
2017-01-09 14:07 ` Stefan Roese
2017-01-17 1:46 ` Bin Meng
2017-01-17 1:48 ` Bin Meng
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox