gpt4 book ai didi

linux - 如何使用 linux 内核模块获取盖子状态?

转载 作者:太空狗 更新时间:2023-10-29 11:13:26 25 4
gpt4 key购买 nike

我可以通过读取 /proc/acpi/button/lid/LID0/state 文件来读取笔记本电脑盖子的状态。现在我想从内核模块中读取它。

我在内核源代码中找到了源文件drivers/acpi/button.c。但是我仍然不明白如何使用它。它导出 acpi_lid_notifier_register、acpi_lid_notifier_unregisteacpi_lid_open 函数。

如何为盖子状态编写模块?

最佳答案

acpi_lid_open返回 0(关闭)、1(打开)或负错误数(不支持)。

要使用通知程序,您需要在模块中定义一个回调函数和一个通知程序 block :

static int yourmodule_lid_notify(struct notifier_block *nb, unsigned long val, void *unused) {
// Whatever you wanted to do here
}
static struct notifier_block lid_notifier;

// Somewhere in a function, likely your module init function:
lid_notifier.notifier_call = yourmodule_lid_notify;
if (acpi_lid_notifier_register(&lid_notifier)) {
// TODO: Handle the failure here
}

// TODO: Unregister the notifier when your module is unloaded:
acpi_lid_notifier_unregister(&lid_notifier);

关于linux - 如何使用 linux 内核模块获取盖子状态?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30512998/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com