From: Olof Johansson <olof-nZhT3qVonbNeoWH0uzbU5w@public.gmane.org>
To: Peter De Schrijver
<pdeschrijver-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
Cc: Colin Cross <ccross-z5hGa2qSFaRBDgjK7y7TUQ@public.gmane.org>,
Stephen Warren <swarren-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>,
Russell King <linux-lFZ/pmaqli7XmaaqVzeoHQ@public.gmane.org>,
Gary King <gking-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>,
Arnd Bergmann <arnd-r2nGTMty4D4@public.gmane.org>,
linux-tegra-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org,
linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Subject: Re: [PATCH v2 3/8] ARM: tegra: rework Tegra secondary CPU core bringup
Date: Tue, 31 Jan 2012 23:54:48 -0800 [thread overview]
Message-ID: <20120201075448.GI7399@quad.lixom.net> (raw)
In-Reply-To: <1328028051-24271-4-git-send-email-pdeschrijver-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
On Tue, Jan 31, 2012 at 06:40:41PM +0200, Peter De Schrijver wrote:
> + .align L1_CACHE_SHIFT
> + .type __tegra_cpu_reset_handler_data, %object
> + .globl __tegra_cpu_reset_handler_data
> +__tegra_cpu_reset_handler_data:
> + .rept TEGRA_RESET_DATA_SIZE
> + .long 0
> + .endr
> + .size __tegra_cpu_reset_handler_data, .-tegra_cpu_reset_handler_data
> + .align L1_CACHE_SHIFT
> +
This doesn't build:
/tmp/ccPd4Pcj.s: Assembler messages:
/tmp/ccPd4Pcj.s: Error: .size expression for __tegra_cpu_reset_handler_data does not evaluate to a constant
Did you mean .-__tegra_cpu_reset_handler_data there?
-Olof
WARNING: multiple messages have this Message-ID (diff)
From: olof@lixom.net (Olof Johansson)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v2 3/8] ARM: tegra: rework Tegra secondary CPU core bringup
Date: Tue, 31 Jan 2012 23:54:48 -0800 [thread overview]
Message-ID: <20120201075448.GI7399@quad.lixom.net> (raw)
In-Reply-To: <1328028051-24271-4-git-send-email-pdeschrijver@nvidia.com>
On Tue, Jan 31, 2012 at 06:40:41PM +0200, Peter De Schrijver wrote:
> + .align L1_CACHE_SHIFT
> + .type __tegra_cpu_reset_handler_data, %object
> + .globl __tegra_cpu_reset_handler_data
> +__tegra_cpu_reset_handler_data:
> + .rept TEGRA_RESET_DATA_SIZE
> + .long 0
> + .endr
> + .size __tegra_cpu_reset_handler_data, .-tegra_cpu_reset_handler_data
> + .align L1_CACHE_SHIFT
> +
This doesn't build:
/tmp/ccPd4Pcj.s: Assembler messages:
/tmp/ccPd4Pcj.s: Error: .size expression for __tegra_cpu_reset_handler_data does not evaluate to a constant
Did you mean .-__tegra_cpu_reset_handler_data there?
-Olof
WARNING: multiple messages have this Message-ID (diff)
From: Olof Johansson <olof@lixom.net>
To: Peter De Schrijver <pdeschrijver@nvidia.com>
Cc: Colin Cross <ccross@android.com>,
Stephen Warren <swarren@nvidia.com>,
Russell King <linux@arm.linux.org.uk>,
Gary King <gking@nvidia.com>, Arnd Bergmann <arnd@arndb.de>,
linux-tegra@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH v2 3/8] ARM: tegra: rework Tegra secondary CPU core bringup
Date: Tue, 31 Jan 2012 23:54:48 -0800 [thread overview]
Message-ID: <20120201075448.GI7399@quad.lixom.net> (raw)
In-Reply-To: <1328028051-24271-4-git-send-email-pdeschrijver@nvidia.com>
On Tue, Jan 31, 2012 at 06:40:41PM +0200, Peter De Schrijver wrote:
> + .align L1_CACHE_SHIFT
> + .type __tegra_cpu_reset_handler_data, %object
> + .globl __tegra_cpu_reset_handler_data
> +__tegra_cpu_reset_handler_data:
> + .rept TEGRA_RESET_DATA_SIZE
> + .long 0
> + .endr
> + .size __tegra_cpu_reset_handler_data, .-tegra_cpu_reset_handler_data
> + .align L1_CACHE_SHIFT
> +
This doesn't build:
/tmp/ccPd4Pcj.s: Assembler messages:
/tmp/ccPd4Pcj.s: Error: .size expression for __tegra_cpu_reset_handler_data does not evaluate to a constant
Did you mean .-__tegra_cpu_reset_handler_data there?
-Olof
next prev parent reply other threads:[~2012-02-01 7:54 UTC|newest]
Thread overview: 52+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-01-31 16:40 [PATCH v2 0/8] Add tegra30 support for secondary cores Peter De Schrijver
2012-01-31 16:40 ` Peter De Schrijver
2012-01-31 16:40 ` Peter De Schrijver
[not found] ` <1328028051-24271-1-git-send-email-pdeschrijver-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2012-01-31 16:40 ` [PATCH v2 1/8] ARM: tegra: export the chipid Peter De Schrijver
2012-01-31 16:40 ` Peter De Schrijver
2012-01-31 16:40 ` Peter De Schrijver
[not found] ` <1328028051-24271-2-git-send-email-pdeschrijver-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2012-02-01 7:26 ` Olof Johansson
2012-02-01 7:26 ` Olof Johansson
2012-02-01 7:26 ` Olof Johansson
2012-01-31 16:40 ` [PATCH v2 2/8] ARM: tegra: functions to access the flowcontroller Peter De Schrijver
2012-01-31 16:40 ` Peter De Schrijver
2012-02-01 7:26 ` Olof Johansson
2012-02-01 7:26 ` Olof Johansson
2012-01-31 16:40 ` [PATCH v2 3/8] ARM: tegra: rework Tegra secondary CPU core bringup Peter De Schrijver
2012-01-31 16:40 ` Peter De Schrijver
[not found] ` <1328028051-24271-4-git-send-email-pdeschrijver-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2012-01-31 22:50 ` Russell King - ARM Linux
2012-01-31 22:50 ` Russell King - ARM Linux
2012-01-31 22:50 ` Russell King - ARM Linux
[not found] ` <20120131225045.GE8338-l+eeeJia6m9vn6HldHNs0ANdhmdF6hFW@public.gmane.org>
2012-02-01 11:08 ` Will Deacon
2012-02-01 11:08 ` Will Deacon
2012-02-01 11:08 ` Will Deacon
2012-02-01 7:54 ` Olof Johansson [this message]
2012-02-01 7:54 ` Olof Johansson
2012-02-01 7:54 ` Olof Johansson
[not found] ` <20120201075448.GI7399-O5ziIzlqnXUVNXGz7ipsyg@public.gmane.org>
2012-02-01 10:01 ` Peter De Schrijver
2012-02-01 10:01 ` Peter De Schrijver
2012-02-01 10:01 ` Peter De Schrijver
2012-01-31 16:40 ` [PATCH v2 4/8] ARM: tegra: prepare powergate.c for multiple variants Peter De Schrijver
2012-01-31 16:40 ` Peter De Schrijver
2012-01-31 16:40 ` Peter De Schrijver
2012-01-31 16:40 ` [PATCH v2 5/8] ARM: tegra: export tegra_powergate_is_powered() Peter De Schrijver
2012-01-31 16:40 ` Peter De Schrijver
2012-01-31 16:40 ` [PATCH v2 6/8] ARM: tegra: add support for Tegra30 powerdomains Peter De Schrijver
2012-01-31 16:40 ` Peter De Schrijver
2012-01-31 16:40 ` [PATCH v2 7/8] ARM: tegra: support for Tegra30 CPU powerdomains Peter De Schrijver
2012-01-31 16:40 ` Peter De Schrijver
2012-01-31 16:40 ` [PATCH v2 8/8] ARM: tegra: support for secondary cores on Tegra30 Peter De Schrijver
2012-01-31 16:40 ` Peter De Schrijver
[not found] ` <1328028051-24271-9-git-send-email-pdeschrijver-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2012-02-02 18:04 ` Stephen Warren
2012-02-02 18:04 ` Stephen Warren
2012-02-02 18:04 ` Stephen Warren
[not found] ` <74CDBE0F657A3D45AFBB94109FB122FF178E124AA5-C7FfzLzN0UxDw2glCA4ptUEOCMrvLtNR@public.gmane.org>
2012-02-06 23:23 ` Peter De Schrijver
2012-02-06 23:23 ` Peter De Schrijver
2012-02-06 23:23 ` Peter De Schrijver
2012-02-02 18:17 ` Colin Cross
2012-02-02 18:17 ` Colin Cross
2012-02-02 18:17 ` Colin Cross
2012-02-01 8:33 ` [PATCH v2 0/8] Add tegra30 support for secondary cores Olof Johansson
2012-02-01 8:33 ` Olof Johansson
[not found] ` <20120201083334.GM7399-O5ziIzlqnXUVNXGz7ipsyg@public.gmane.org>
2012-02-01 10:10 ` Peter De Schrijver
2012-02-01 10:10 ` Peter De Schrijver
2012-02-01 10:10 ` Peter De Schrijver
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20120201075448.GI7399@quad.lixom.net \
--to=olof-nzht3qvonbneowh0uzbu5w@public.gmane.org \
--cc=arnd-r2nGTMty4D4@public.gmane.org \
--cc=ccross-z5hGa2qSFaRBDgjK7y7TUQ@public.gmane.org \
--cc=gking-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org \
--cc=linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org \
--cc=linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=linux-lFZ/pmaqli7XmaaqVzeoHQ@public.gmane.org \
--cc=linux-tegra-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=pdeschrijver-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org \
--cc=swarren-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.