From 0b494649fa46d00db9ffef75431f4ea3ed433bdb Mon Sep 17 00:00:00 2001 From: Sascha Hauer Date: Sat, 6 Oct 2012 19:49:35 +0200 Subject: [PATCH] resource: statically initialize iomem resource This gets us rid of an initcall and also has the advantage that request_iomem_region can be called at any time now. Signed-off-by: Sascha Hauer --- common/resource.c | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/common/resource.c b/common/resource.c index da631d399..ea6abe88e 100644 --- a/common/resource.c +++ b/common/resource.c @@ -101,6 +101,8 @@ int release_region(struct resource *res) struct resource iomem_resource = { .start = 0, .end = 0xffffffff, + .name = "iomem", + .children = LIST_HEAD_INIT(iomem_resource.children), }; /* @@ -111,11 +113,3 @@ struct resource *request_iomem_region(const char *name, { return request_region(&iomem_resource, name, start, end); } - -static int iomem_init(void) -{ - init_resource(&iomem_resource, "iomem"); - - return 0; -} -postcore_initcall(iomem_init);