mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-24 09:13:20 -05:00
f1e1ea5167
A user without a Dell system doesn't need to pick any of these drivers. Users with a Dell system can enable this submenu and all drivers behind it will be enabled. Suggested-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Signed-off-by: Mario Limonciello <mario.limonciello@dell.com> Link: https://lore.kernel.org/r/20210203195832.2950605-1-mario.limonciello@dell.com Reviewed-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Hans de Goede <hdegoede@redhat.com>
16 lines
351 B
C
16 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
|