mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 09:41:44 +00:00
15f2f9b3a9
These functions are no longer called or needed, so we can remove them. As I rewrote the whole firmware.c file, add my copyright. Cc: Kay Sievers <kay.sievers@vrfy.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
28 lines
614 B
C
28 lines
614 B
C
/*
|
|
* 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 kset *firmware_kset;
|
|
EXPORT_SYMBOL_GPL(firmware_kset);
|
|
|
|
int __init firmware_init(void)
|
|
{
|
|
firmware_kset = kset_create_and_add("firmware", NULL, NULL);
|
|
if (!firmware_kset)
|
|
return -ENOMEM;
|
|
return 0;
|
|
}
|