Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
ARM: soc: dependency warnings for errata
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  Messages 26 - 44 of 44 - Collapse all  -  Translate all to Translated (View all originals) < Older 
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Linus Walleij  
View profile  
 More options Oct 3 2012, 7:30 am
Newsgroups: linux.kernel
From: Linus Walleij <linus.wall...@linaro.org>
Date: Wed, 03 Oct 2012 13:30:02 +0200
Local: Wed, Oct 3 2012 7:30 am
Subject: Re: [PATCH 17/17] ARM: soc: dependency warnings for errata

On Tue, Oct 2, 2012 at 6:36 PM, Arnd Bergmann <a...@arndb.de> wrote:
> The PL310_ERRATA_753970 and ARM_ERRATA_764369 symbols only make sense
> when the base features for them are enabled, so select them
> conditionally in Kconfig to avoid warnings like:

> warning: (UX500_SOC_COMMON) selects PL310_ERRATA_753970 which has unmet direct dependencies (CACHE_PL310)
> warning: (ARCH_TEGRA_2x_SOC && ARCH_TEGRA_3x_SOC && UX500_SOC_COMMON) selects ARM_ERRATA_764369 which has unmet direct dependencies (CPU_V7 && SMP)

> Signed-off-by: Arnd Bergmann <a...@arndb.de>
> Cc: Linus Walleij <linus.wall...@linaro.org>
> Cc: Stephen Warren <swar...@wwwdotorg.org>

Makes perfect sense.
Reviewed-by: Linus Walleij <linus.wall...@linaro.org>

Yours,
Linus Walleij
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Discussion subject changed to "ARM: at91: unused variable in at91_pm_verify_clocks" by Arnd Bergmann
Arnd Bergmann  
View profile  
 More options Oct 4 2012, 4:30 am
Newsgroups: linux.kernel
From: Arnd Bergmann <a...@arndb.de>
Date: Thu, 04 Oct 2012 10:30:02 +0200
Local: Thurs, Oct 4 2012 4:30 am
Subject: Re: [PATCH 08/17] ARM: at91: unused variable in at91_pm_verify_clocks
On Tuesday 02 October 2012, Jean-Christophe PLAGNIOL-VILLARD wrote:

> >       unsigned long scsr;
> > +#ifdef CONFIG_AT91_PROGRAMMABLE_CLOCKS
> >       int i;
> > +#endif
> please is if (IS_ENBLED())

> #ifdef drop code coverage

Ok, agreed. Here is the new version:

From bacd47abb36104665261c84f6f85bba7aef8a521 Mon Sep 17 00:00:00 2001
From: Arnd Bergmann <a...@arndb.de>
Date: Mon, 30 Apr 2012 13:00:32 +0000
Subject: [PATCH] ARM: at91: unused variable in at91_pm_verify_clocks

The code using the variable 'i' in this function is conditional which
results in a harmless compiler warning. Using the IS_ENABLED macro
instead of #ifdef makes the code look nicer and gets rid of the
warning.

Without this patch, building at91sam9263_defconfig results in:

/home/arnd/linux-arm/arch/arm/mach-at91/pm.c: In function 'at91_pm_verify_clocks':
/home/arnd/linux-arm/arch/arm/mach-at91/pm.c:137:6: warning: unused variable 'i' [-Wunused-variable]

Signed-off-by: Arnd Bergmann <a...@arndb.de>
Cc: Nicolas Ferre <nicolas.fe...@atmel.com>
Cc: Jean-Christophe Plagniol-Villard <plagn...@jcrosoft.com>

diff --git a/arch/arm/mach-at91/pm.c b/arch/arm/mach-at91/pm.c
index 2c2d865..5315f05 100644
--- a/arch/arm/mach-at91/pm.c
+++ b/arch/arm/mach-at91/pm.c
@@ -153,7 +153,9 @@ static int at91_pm_verify_clocks(void)
                }
        }

-#ifdef CONFIG_AT91_PROGRAMMABLE_CLOCKS
+       if (!IS_ENABLED(CONFIG_AT91_PROGRAMMABLE_CLOCKS))
+               return 1;
+
        /* PCK0..PCK3 must be disabled, or configured to use clk32k */
        for (i = 0; i < 4; i++) {
                u32 css;
@@ -167,7 +169,6 @@ static int at91_pm_verify_clocks(void)
                        return 0;
                }
        }
-#endif

        return 1;
 }

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Discussion subject changed to "ARM: at91: skip at91_io_desc definition for NOMMU" by Arnd Bergmann
Arnd Bergmann  
View profile  
 More options Oct 4 2012, 4:30 am
Newsgroups: linux.kernel
From: Arnd Bergmann <a...@arndb.de>
Date: Thu, 04 Oct 2012 10:30:02 +0200
Local: Thurs, Oct 4 2012 4:30 am
Subject: Re: [PATCH 07/17] ARM: at91: skip at91_io_desc definition for NOMMU
On Tuesday 02 October 2012, Jean-Christophe PLAGNIOL-VILLARD wrote:

> On 18:36 Tue 02 Oct     , Arnd Bergmann wrote:
> > On NOMMU systems, we do cannot remap the MMIO space, so the
> > definition of at91_io_desc is unused.

> > Without this patch, building at91x40_defconfig results in:

> > arch/arm/mach-at91/setup.c:90:24: warning: 'at91_io_desc' defined but not used [-Wunused-variable]
> I prefer a __maybe_unused on the struct so the compilator will just drop it

Ok, makes sense. I've fixed up the patch accordingly.

        Arnd
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Discussion subject changed to "ARM: shmobile: fix memory size for kota2_defconfig" by Arnd Bergmann
Arnd Bergmann  
View profile  
 More options Oct 4 2012, 4:40 am
Newsgroups: linux.kernel
From: Arnd Bergmann <a...@arndb.de>
Date: Thu, 04 Oct 2012 10:40:02 +0200
Local: Thurs, Oct 4 2012 4:40 am
Subject: Re: [PATCH 01/17] ARM: shmobile: fix memory size for kota2_defconfig
On Wednesday 03 October 2012, Simon Horman wrote:

> I looked through my fines and found a config that I believe
> worked with a derivative of 2.6.35.7.

> It has CONFIG_MEMORY_SIZE=0x1e800000.

> So what I suspect has happened is that an extra zero has crept into
> arch/arm/configs/kota2_defconfig and the intended value is:

> CONFIG_MEMORY_SIZE=0x1e000000

> Unfortunately I do not have access to a board to test this,
> nor am I aware of anyone who does.

Ok, I'll drop this patch for now then, so we keep the warning around
to remind us of the problem.

        Arnd
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Simon Horman  
View profile  
 More options Oct 4 2012, 5:00 am
Newsgroups: linux.kernel
From: Simon Horman <ho...@verge.net.au>
Date: Thu, 04 Oct 2012 11:00:01 +0200
Local: Thurs, Oct 4 2012 5:00 am
Subject: Re: [PATCH 01/17] ARM: shmobile: fix memory size for kota2_defconfig

Thanks. I have subsequently located a Kota2 board,
however it may be a little while before I get my hands on it.

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Discussion subject changed to "ARM: iop13xx: mark iop13xx_scan_bus as __devinit" by Arnd Bergmann
Arnd Bergmann  
View profile  
 More options Oct 4 2012, 6:40 am
Newsgroups: linux.kernel
From: Arnd Bergmann <a...@arndb.de>
Date: Thu, 04 Oct 2012 12:40:03 +0200
Local: Thurs, Oct 4 2012 6:40 am
Subject: Re: [PATCH 12/17] ARM: iop13xx: mark iop13xx_scan_bus as __devinit
(+Greg)

On Tuesday 02 October 2012, Bjorn Helgaas wrote:

Hmm, I'm just trying to get rid of all build time warnings in the defconfigs
right now, and modpost still complains about the section mismatches. I have
a bunch more of these patches, but it would also be fine with me if we can
patch mostpost to ignore these cases.

I've also redone the analysis that Greg cited in the commit message for
45f035ab9b8 "CONFIG_HOTPLUG should be always on"

   It is quite hard to disable it these days, and even if you do, it
    only saves you about 200 bytes.  However, if it is disabled, lots of
    bugs show up because it is almost never tested if the option is disabled.

My test case (ARM omap2plus_defconfig, one of the most common configurations)
shows these size -A differences:

section         nohotplug       hotplug         difference
.head.text      392             392             0
.text           4829940         4881140         51200
.rodata         1630360         1633056         2696
__ksymtab       25720           25720           0
__ksymtab_gpl   17096           17136           40
__kcrctab       12860           12860           0
__kcrctab_gpl   8548            8568            20
__ksymtab_stri  96427           96509           82
__init_rodata   0               9800            9800
__param         2320            2320            0
__modver        716             364             -352
.ARM.unwind_idx 160360          160792          432
.ARM.unwind_tab 24312           24312           0
.init.text      234632          195688          -38944
.exit.text      8680            5116            -3564
.init.proc.info 312             312             0
.init.arch.info 2964            2964            0
.init.tagtable  72              72              0
.init.smpalt    776             776             0
.init.pv_table  880             880             0
.init.data      123356          111348          -12008
.exit.data      0               0               0
.data..percpu   12928           12928           0
.data           560160          562688          2528
.notes          36              36              0
.bss            5605324         5605580         256

total           13359171        13371357        12186
after boot      13001183        13054521        53338

That is over 50kb difference after discarding the init sections,
significantly more than the 200 bytes that Greg found.
The point about lack of testing is still valid of course, and I'm
not saying we need to keep the option around, but it's really
not as obvious as before. An argument in favor of removing the
__devinit logic is that these 50kb is still just 0.4% of the
kernel size.

For the five ARM defconfig files that actually turn off hotplug,
the absolute numbers are a bit lower, but the percentage is similar.

This is the amount of space wasted by enabling on CONFIG_HOTPLUG
on them, in bytes after discarding the init sections, and as a
percentage of the vmlinux size:

at91x40_defconfig       3448    0.27%
edb7211_defconfig       8912    0.41%
footbridge_defconfig    33347   0.97%
fortunet_defconfig      4592    0.25%
pleb_defconfig          7405    0.28%

Footbridge is the only config among these that enables PCI and USB, so
it has a bunch more drivers that actually have notable functions that
can be discarded.

        Arnd
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Discussion subject changed to "ARM: davinci: don't mark da850_register_cpufreq as __init" by Sekhar Nori
Sekhar Nori  
View profile  
 More options Oct 4 2012, 9:20 am
Newsgroups: linux.kernel
From: Sekhar Nori <nsek...@ti.com>
Date: Thu, 04 Oct 2012 15:20:02 +0200
Local: Thurs, Oct 4 2012 9:20 am
Subject: Re: [PATCH 14/17] ARM: davinci: don't mark da850_register_cpufreq as __init
On 10/2/2012 10:06 PM, Arnd Bergmann wrote:

> The mityomapl138_cpufreq_init and read_factory_config function in
> board-mityomapl138.c are not __init functions and might be called
> at a later stage, so da850_register_cpufreq must not be __init either.

> Without this patch, building da8xx_omapl_defconfig results in:

> WARNING: arch/arm/mach-davinci/built-in.o(.text+0x2eb4): Section mismatch in reference from the function read_factory_config() to the function .init.text:da850_register_cpufreq()
> The function read_factory_config() references
> the function __init da850_register_cpufreq().
> This is often because read_factory_config lacks a __init
> annotation or the annotation of da850_register_cpufreq is wrong.

> Signed-off-by: Arnd Bergmann <a...@arndb.de>
> Cc: Sekhar Nori <nsek...@ti.com>
> Cc: Kevin Hilman <khil...@ti.com>

Acked-by: Sekhar Nori <nsek...@ti.com>

Regards,
Sekhar
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Discussion subject changed to "ARM: at91: unused variable in at91_pm_verify_clocks" by Jean-Christophe PLAGNIOL-VILLARD
Jean-Christophe PLAGNIOL-VILLARD  
View profile  
 More options Oct 4 2012, 9:50 am
Newsgroups: linux.kernel
From: Jean-Christophe PLAGNIOL-VILLARD <plagn...@jcrosoft.com>
Date: Thu, 04 Oct 2012 15:50:01 +0200
Local: Thurs, Oct 4 2012 9:50 am
Subject: Re: [PATCH 08/17] ARM: at91: unused variable in at91_pm_verify_clocks
On 08:28 Thu 04 Oct     , Arnd Bergmann wrote:

Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagn...@jcrosoft.com>

Best Regards,
J.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Discussion subject changed to "ARM: iop13xx: mark iop13xx_scan_bus as __devinit" by Greg KH
Greg KH  
View profile  
 More options Oct 4 2012, 10:40 am
Newsgroups: linux.kernel
From: Greg KH <g...@kroah.com>
Date: Thu, 04 Oct 2012 16:40:02 +0200
Local: Thurs, Oct 4 2012 10:40 am
Subject: Re: [PATCH 12/17] ARM: iop13xx: mark iop13xx_scan_bus as __devinit

USB drivers should not be having anything discarded if CONFIG_HOTPLUG is
disabled (it shouldn't be disabled for USB systems, unless someone isn't
going to plug a USB device into the system after it comes up, which is
one of the main confusions here.)

As for PCI, that seems like a lot of code getting thrown away, it would
be interesting to figure out why that is.

My plans are to now start unwinding the CONFIG_HOTPLUG dependancies.  If
a driver subsystem really does want to throw away sections (like PCI
will if CONFIG_PCI_HOTPLUG is not enabled), then it should be able to.
But I imagine all of the real savings will be in the bus cores, not the
individual drivers, unless they have huge module_init() functions.

Thanks for the numbers, I'll look into this more in the coming weeks.

greg k-h
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Discussion subject changed to "ARM: imx: select ARM_CPU_SUSPEND if necessary" by Shawn Guo
Shawn Guo  
View profile  
 More options Oct 7 2012, 12:20 am
Newsgroups: linux.kernel
From: Shawn Guo <shawn....@linaro.org>
Date: Sun, 07 Oct 2012 06:20:01 +0200
Local: Sun, Oct 7 2012 12:20 am
Subject: Re: [PATCH 09/17] ARM: imx: select ARM_CPU_SUSPEND if necessary
Isn't the following the approach we agreed on?

http://thread.gmane.org/gmane.linux.ports.arm.kernel/183222/focus=134...

Shawn

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Arnd Bergmann  
View profile  
 More options Oct 7 2012, 4:40 am
Newsgroups: linux.kernel
From: Arnd Bergmann <a...@arndb.de>
Date: Sun, 07 Oct 2012 10:40:02 +0200
Local: Sun, Oct 7 2012 4:40 am
Subject: Re: [PATCH 09/17] ARM: imx: select ARM_CPU_SUSPEND if necessary
On Sunday 07 October 2012, Shawn Guo wrote:

> Isn't the following the approach we agreed on?

> http://thread.gmane.org/gmane.linux.ports.arm.kernel/183222/focus=134...

Yes, you are right, my mistake. That patch was already merged, I just
accidentally picked up the older one again when going through my backlog
and forgot to check that it still applies.

Dropping it from late/fixes now.

        Arnd
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Discussion subject changed to "ARM: pxa: remove sharpsl_fatal_check function" by Eric Miao
Eric Miao  
View profile  
 More options Oct 7 2012, 10:40 pm
Newsgroups: linux.kernel
From: Eric Miao <eric.y.m...@gmail.com>
Date: Mon, 08 Oct 2012 04:40:02 +0200
Local: Sun, Oct 7 2012 10:40 pm
Subject: Re: [PATCH 05/17] ARM: pxa: remove sharpsl_fatal_check function

On Wed, Oct 3, 2012 at 12:36 AM, Arnd Bergmann <a...@arndb.de> wrote:
> The sharpsl_fatal_check has not been used since Pavel Machek removed
> the caller in 99f329a2b "pxa/sharpsl_pm: zaurus c3000 aka spitz: fix
> resume". Nobody has complained since 2009, so it's safe to assume we
> can just remove the function.

> Without this patch, building corgi_defconfig results in:

> /home/arnd/linux-arm/arch/arm/mach-pxa/sharpsl_pm.c:693:12: warning: 'sharpsl_fatal_check' defined but not used [-Wunused-function]

> Signed-off-by: Arnd Bergmann <a...@arndb.de>
> Cc: Pavel Machek <pa...@ucw.cz>
> Cc: Stanislav Brabec <u...@penguin.cz>
> Cc: Eric Miao <eric.y.m...@gmail.com>
> Cc: Haojian Zhuang <haojian.zhu...@gmail.com>

Acked-by: Eric Miao <eric.y.m...@gmail.com>

Let's get it cleaned up firstly. One can always reference the history for a
sample implementation later if this is needed in the future.

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Haojian Zhuang  
View profile  
 More options Oct 7 2012, 11:20 pm
Newsgroups: linux.kernel
From: Haojian Zhuang <haojian.zhu...@gmail.com>
Date: Mon, 08 Oct 2012 05:20:01 +0200
Local: Sun, Oct 7 2012 11:20 pm
Subject: Re: [PATCH 05/17] ARM: pxa: remove sharpsl_fatal_check function

Acked-by: Haojian Zhuang <haojian.zhu...@gmail.com>
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Discussion subject changed to "ARM: shmobile: fix memory size for kota2_defconfig" by Olof Johansson
Olof Johansson  
View profile  
 More options Nov 30 2012, 5:20 pm
Newsgroups: linux.kernel
From: Olof Johansson <o...@lixom.net>
Date: Fri, 30 Nov 2012 23:20:02 +0100
Local: Fri, Nov 30 2012 5:20 pm
Subject: Re: [PATCH 01/17] ARM: shmobile: fix memory size for kota2_defconfig
Hi,

Gentle ping. I just came across this warning again so I figured I'd check.

-Olof
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Simon Horman  
View profile  
 More options Nov 30 2012, 7:30 pm
Newsgroups: linux.kernel
From: Simon Horman <ho...@verge.net.au>
Date: Sat, 01 Dec 2012 01:30:02 +0100
Local: Fri, Nov 30 2012 7:30 pm
Subject: Re: [PATCH 01/17] ARM: shmobile: fix memory size for kota2_defconfig

Sorry, I still don't have a kota2 board.
However, I expect to obtain one within the next week.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Simon Horman  
View profile  
 More options Jan 6, 9:00 pm
Newsgroups: linux.kernel
From: Simon Horman <ho...@verge.net.au>
Date: Mon, 07 Jan 2013 03:00:02 +0100
Local: Sun, Jan 6 2013 9:00 pm
Subject: Re: [PATCH 01/17] ARM: shmobile: fix memory size for kota2_defconfig

Hi,

I have my kota2 board up and running now and I believe that
the correct value is 0x1e000000. I will apply a patch to my
defconfigs branch accordingly.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Arnd Bergmann  
View profile  
 More options Jan 7, 8:40 am
Newsgroups: linux.kernel
From: Arnd Bergmann <a...@arndb.de>
Date: Mon, 07 Jan 2013 14:40:03 +0100
Local: Mon, Jan 7 2013 8:40 am
Subject: Re: [PATCH 01/17] ARM: shmobile: fix memory size for kota2_defconfig
On Monday 07 January 2013, Simon Horman wrote:

> I have my kota2 board up and running now and I believe that
> the correct value is 0x1e000000. I will apply a patch to my
> defconfigs branch accordingly.

Ok, thanks!

Should we mark that patch for stable backports?

        Arnd
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Simon Horman  
View profile  
 More options Jan 7, 7:30 pm
Newsgroups: linux.kernel
From: Simon Horman <ho...@verge.net.au>
Date: Tue, 08 Jan 2013 01:30:01 +0100
Local: Mon, Jan 7 2013 7:30 pm
Subject: Re: [PATCH 01/17] ARM: shmobile: fix memory size for kota2_defconfig

On Mon, Jan 07, 2013 at 01:33:56PM +0000, Arnd Bergmann wrote:
> On Monday 07 January 2013, Simon Horman wrote:
> > I have my kota2 board up and running now and I believe that
> > the correct value is 0x1e000000. I will apply a patch to my
> > defconfigs branch accordingly.

> Ok, thanks!

> Should we mark that patch for stable backports?

I don't believe it warrants a stable backport as
the board appears to function well without the change.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Arnd Bergmann  
View profile  
 More options Jan 8, 2:10 pm
Newsgroups: linux.kernel
From: Arnd Bergmann <a...@arndb.de>
Date: Tue, 08 Jan 2013 20:10:02 +0100
Local: Tues, Jan 8 2013 2:10 pm
Subject: Re: [PATCH 01/17] ARM: shmobile: fix memory size for kota2_defconfig
On Tuesday 08 January 2013, Simon Horman wrote:

> > Should we mark that patch for stable backports?

> I don't believe it warrants a stable backport as
> the board appears to function well without the change.

Ok, fair enough. I was thinking of getting rid of the build warning in the older
kernel, but it's probably not worth it if there is no functional impact.

        Arnd
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages < Older 
« Back to Discussions « Newer topic     Older topic »