Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
awilliam
GitHub Repository: awilliam/linux-vfio
Path: blob/master/drivers/base/firmware.c
15109 views
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
}
28
29