cregit-Linux how code gets into the kernel

Release 4.14 drivers/base/firmware.c

Directory: drivers/base
/*
 * firmware.c - firmware subsystem hoohaw.
 *
 * Copyright (c) 2002-3 Patrick Mochel
 * Copyright (c) 2002-3 Open Source Development Labs
 * Copyright (c) 2007 Greg Kroah-Hartman <gregkh@suse.de>
 * Copyright (c) 2007 Novell Inc.
 *
 * This file is released under the GPLv2
 */
#include <linux/kobject.h>
#include <linux/module.h>
#include <linux/init.h>
#include <linux/device.h>

#include "base.h"


struct kobject *firmware_kobj;

EXPORT_SYMBOL_GPL(firmware_kobj);


int __init firmware_init(void) { firmware_kobj = kobject_create_and_add("firmware", NULL); if (!firmware_kobj) return -ENOMEM; return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Greg Kroah-Hartman1862.07%266.67%
Patrick Mochel1137.93%133.33%
Total29100.00%3100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
Greg Kroah-Hartman2952.73%466.67%
Patrick Mochel2036.36%116.67%
Ben Dooks610.91%116.67%
Total55100.00%6100.00%
Directory: drivers/base
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.