Add header guard

This commit is contained in:
Werner Sembach 2022-07-15 14:45:51 +02:00
parent 48666348c6
commit 6cf70084ab

View file

@ -16,6 +16,9 @@
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this software. If not, see <https://www.gnu.org/licenses/>. * along with this software. If not, see <https://www.gnu.org/licenses/>.
*/ */
#ifndef CLEVO_KEYBOARD_H
#define CLEVO_KEYBOARD_H
#include "tuxedo_keyboard_common.h" #include "tuxedo_keyboard_common.h"
#include "clevo_interfaces.h" #include "clevo_interfaces.h"
@ -827,3 +830,5 @@ struct tuxedo_keyboard_driver clevo_keyboard_driver = {
.probe = clevo_keyboard_probe, .probe = clevo_keyboard_probe,
.key_map = clevo_keymap, .key_map = clevo_keymap,
}; };
#endif // CLEVO_KEYBOARD_H