commit d1edce71135cc6d98c0a4b5729774542b676e769 Author: sophgo-forum-service <forum_service@sophgo.com> Date: Fri Mar 15 16:07:33 2024 +0800 [fix] recommend using ssh method to clone repo. [fix] fix sensor driver repo branch name.
17 lines
351 B
C
17 lines
351 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
Dell Airplane Mode Switch driver
|
|
Copyright (C) 2014-2015 Pali Rohár <pali@kernel.org>
|
|
|
|
*/
|
|
|
|
#ifndef _DELL_RBTN_H_
|
|
#define _DELL_RBTN_H_
|
|
|
|
struct notifier_block;
|
|
|
|
int dell_rbtn_notifier_register(struct notifier_block *nb);
|
|
int dell_rbtn_notifier_unregister(struct notifier_block *nb);
|
|
|
|
#endif
|