]> Git Repo - linux.git/blob - drivers/base/firmware.c
Merge branch 'for-chris' of git://repo.or.cz/linux-btrfs-devel into integration
[linux.git] / drivers / base / firmware.c
1 /*
2  * firmware.c - firmware subsystem hoohaw.
3  *
4  * Copyright (c) 2002-3 Patrick Mochel
5  * Copyright (c) 2002-3 Open Source Development Labs
6  * Copyright (c) 2007 Greg Kroah-Hartman <[email protected]>
7  * Copyright (c) 2007 Novell Inc.
8  *
9  * This file is released under the GPLv2
10  */
11 #include <linux/kobject.h>
12 #include <linux/module.h>
13 #include <linux/init.h>
14 #include <linux/device.h>
15
16 #include "base.h"
17
18 struct kobject *firmware_kobj;
19 EXPORT_SYMBOL_GPL(firmware_kobj);
20
21 int __init firmware_init(void)
22 {
23         firmware_kobj = kobject_create_and_add("firmware", NULL);
24         if (!firmware_kobj)
25                 return -ENOMEM;
26         return 0;
27 }
This page took 0.032047 seconds and 4 git commands to generate.