From: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
To: barebox@lists.infradead.org
Subject: [PATCH V2] initcall: add postconsole_initcall
Date: Sun, 29 Aug 2010 18:53:03 +0200 [thread overview]
Message-ID: <1283100783-23625-1-git-send-email-plagnioj@jcrosoft.com> (raw)
In-Reply-To: <1280840019-11421-1-git-send-email-plagnioj@jcrosoft.com>
this will allow us to print information as soon as the console will be enable
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
---
HI,
this patch is a rebase version which is needed by at91 since the
switch to linux clk framework
which was forget
Best Regards,
J.
include/init.h | 9 +++++----
1 files changed, 5 insertions(+), 4 deletions(-)
diff --git a/include/init.h b/include/init.h
index bc70874..9651f2a 100644
--- a/include/init.h
+++ b/include/init.h
@@ -25,10 +25,11 @@ typedef int (*initcall_t)(void);
#define core_initcall(fn) __define_initcall("1",fn,1)
#define postcore_initcall(fn) __define_initcall("2",fn,2)
#define console_initcall(fn) __define_initcall("3",fn,3)
-#define coredevice_initcall(fn) __define_initcall("4",fn,4)
-#define fs_initcall(fn) __define_initcall("5",fn,5)
-#define device_initcall(fn) __define_initcall("6",fn,6)
-#define late_initcall(fn) __define_initcall("7",fn,7)
+#define postconsole_initcall(fn) __define_initcall("4",fn,4)
+#define coredevice_initcall(fn) __define_initcall("5",fn,5)
+#define fs_initcall(fn) __define_initcall("6",fn,6)
+#define device_initcall(fn) __define_initcall("7",fn,7)
+#define late_initcall(fn) __define_initcall("8",fn,8)
/* section for code used very early when
* - we're not running from where we linked at
--
1.7.1
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
next prev parent reply other threads:[~2010-08-29 16:53 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-08-03 12:51 [PATCH 0/3] introduce clk framework Jean-Christophe PLAGNIOL-VILLARD
2010-08-03 12:53 ` [PATCH 1/3] initcall: add postconsole_initcall Jean-Christophe PLAGNIOL-VILLARD
2010-08-03 12:53 ` [PATCH 2/3] clock: Introduce clock framework from Linux Jean-Christophe PLAGNIOL-VILLARD
2010-08-03 12:53 ` [PATCH 3/3] at91: implement clock framework Jean-Christophe PLAGNIOL-VILLARD
2010-08-03 20:23 ` Sascha Hauer
2010-08-04 1:33 ` [PATCH 3/3 v2] " Jean-Christophe PLAGNIOL-VILLARD
2010-08-04 5:20 ` Baruch Siach
2010-08-04 6:06 ` Jean-Christophe PLAGNIOL-VILLARD
2010-08-04 6:12 ` [PATCH 3/3 v3] " Jean-Christophe PLAGNIOL-VILLARD
2010-08-29 16:53 ` Jean-Christophe PLAGNIOL-VILLARD [this message]
2010-08-30 1:21 ` [PATCH V3] initcall: add postconsole_initcall Jean-Christophe PLAGNIOL-VILLARD
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=1283100783-23625-1-git-send-email-plagnioj@jcrosoft.com \
--to=plagnioj@jcrosoft.com \
--cc=barebox@lists.infradead.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox