| .. | .. |
|---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-or-later |
|---|
| 1 | 2 | /* |
|---|
| 2 | 3 | Dell Airplane Mode Switch driver |
|---|
| 3 | | - Copyright (C) 2014-2015 Pali Rohár <pali.rohar@gmail.com> |
|---|
| 4 | + Copyright (C) 2014-2015 Pali Rohár <pali@kernel.org> |
|---|
| 4 | 5 | |
|---|
| 5 | | - This program is free software; you can redistribute it and/or modify |
|---|
| 6 | | - it under the terms of the GNU General Public License as published by |
|---|
| 7 | | - the Free Software Foundation; either version 2 of the License, or |
|---|
| 8 | | - (at your option) any later version. |
|---|
| 9 | | - |
|---|
| 10 | | - This program is distributed in the hope that it will be useful, |
|---|
| 11 | | - but WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 12 | | - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|---|
| 13 | | - GNU General Public License for more details. |
|---|
| 14 | 6 | */ |
|---|
| 15 | 7 | |
|---|
| 16 | 8 | #include <linux/module.h> |
|---|
| 17 | 9 | #include <linux/acpi.h> |
|---|
| 18 | 10 | #include <linux/rfkill.h> |
|---|
| 19 | 11 | #include <linux/input.h> |
|---|
| 12 | + |
|---|
| 13 | +#include "dell-rbtn.h" |
|---|
| 20 | 14 | |
|---|
| 21 | 15 | enum rbtn_type { |
|---|
| 22 | 16 | RBTN_UNKNOWN, |
|---|
| .. | .. |
|---|
| 501 | 495 | "(default true)"); |
|---|
| 502 | 496 | MODULE_DEVICE_TABLE(acpi, rbtn_ids); |
|---|
| 503 | 497 | MODULE_DESCRIPTION("Dell Airplane Mode Switch driver"); |
|---|
| 504 | | -MODULE_AUTHOR("Pali Rohár <pali.rohar@gmail.com>"); |
|---|
| 498 | +MODULE_AUTHOR("Pali Rohár <pali@kernel.org>"); |
|---|
| 505 | 499 | MODULE_LICENSE("GPL"); |
|---|