Newer
Older
barebox / lib / global.c
@Sascha Hauer Sascha Hauer on 5 Jul 2007 645 bytes svn_rev_639
#include <common.h>
#include <command.h>
#include <init.h>
#include <driver.h>
#include <malloc.h>
#include <errno.h>

static struct device_d global_dev;

int global_add_param(struct param_d *param)
{
        return dev_add_param(&global_dev, param);
}

static struct device_d global_dev = {
        .name  = "global",
	.id    = "env",
        .map_base = 0,
        .size   = 0,
};

static struct driver_d global_driver = {
        .name  = "global",
        .probe = dummy_probe,
};

static int global_init(void)
{
	register_device(&global_dev);
        register_driver(&global_driver);
        return 0;
}

coredevice_initcall(global_init);