-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Register the ACPI subsystem with configfs. Signed-off-by: Octavian Purdila <octavian.purdila@intel.com> Reviewed-by: Mika Westerberg <mika.westerberg@linux.intel.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
- Loading branch information
Octavian Purdila
authored and
Rafael J. Wysocki
committed
Jul 8, 2016
1 parent
475fb4e
commit 0bf54fc
Showing
5 changed files
with
70 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
What: /config/acpi | ||
Date: July 2016 | ||
KernelVersion: 4.8 | ||
Contact: linux-acpi@vger.kernel.org | ||
Description: | ||
This represents the ACPI subsystem entry point directory. It | ||
contains sub-groups corresponding to ACPI configurable options. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
/* | ||
* ACPI configfs support | ||
* | ||
* Copyright (c) 2016 Intel Corporation | ||
* | ||
* This program is free software; you can redistribute it and/or modify it | ||
* under the terms of the GNU General Public License version 2 as published by | ||
* the Free Software Foundation. | ||
*/ | ||
|
||
#include <linux/init.h> | ||
#include <linux/module.h> | ||
#include <linux/configfs.h> | ||
#include <linux/acpi.h> | ||
|
||
static struct config_item_type acpi_root_group_type = { | ||
.ct_owner = THIS_MODULE, | ||
}; | ||
|
||
static struct configfs_subsystem acpi_configfs = { | ||
.su_group = { | ||
.cg_item = { | ||
.ci_namebuf = "acpi", | ||
.ci_type = &acpi_root_group_type, | ||
}, | ||
}, | ||
.su_mutex = __MUTEX_INITIALIZER(acpi_configfs.su_mutex), | ||
}; | ||
|
||
static int __init acpi_configfs_init(void) | ||
{ | ||
int ret; | ||
struct config_group *root = &acpi_configfs.su_group; | ||
|
||
config_group_init(root); | ||
|
||
ret = configfs_register_subsystem(&acpi_configfs); | ||
if (ret) | ||
return ret; | ||
|
||
return 0; | ||
} | ||
module_init(acpi_configfs_init); | ||
|
||
static void __exit acpi_configfs_exit(void) | ||
{ | ||
configfs_unregister_subsystem(&acpi_configfs); | ||
} | ||
module_exit(acpi_configfs_exit); | ||
|
||
MODULE_AUTHOR("Octavian Purdila <octavian.purdila@intel.com>"); | ||
MODULE_DESCRIPTION("ACPI configfs support"); | ||
MODULE_LICENSE("GPL v2"); |