gpio-moxtet.c (c95baf12f5077419db01313ab61c2aac007d40cd) gpio-moxtet.c (b37c38484375f5a204500e0b10b40da268090995)
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * Turris Mox Moxtet GPIO expander
4 *
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * Turris Mox Moxtet GPIO expander
4 *
5 * Copyright (C) 2018 Marek Behun <marek.behun@nic.cz>
5 * Copyright (C) 2018 Marek Behún <kabel@kernel.org>
6 */
7
8#include <linux/bitops.h>
9#include <linux/gpio/driver.h>
10#include <linux/moxtet.h>
11#include <linux/module.h>
12
13#define MOXTET_GPIO_NGPIOS 12

--- 155 unchanged lines hidden (view full) ---

169 .name = "moxtet-gpio",
170 .of_match_table = moxtet_gpio_dt_ids,
171 .probe = moxtet_gpio_probe,
172 },
173 .id_table = moxtet_gpio_module_table,
174};
175module_moxtet_driver(moxtet_gpio_driver);
176
6 */
7
8#include <linux/bitops.h>
9#include <linux/gpio/driver.h>
10#include <linux/moxtet.h>
11#include <linux/module.h>
12
13#define MOXTET_GPIO_NGPIOS 12

--- 155 unchanged lines hidden (view full) ---

169 .name = "moxtet-gpio",
170 .of_match_table = moxtet_gpio_dt_ids,
171 .probe = moxtet_gpio_probe,
172 },
173 .id_table = moxtet_gpio_module_table,
174};
175module_moxtet_driver(moxtet_gpio_driver);
176
177MODULE_AUTHOR("Marek Behun <marek.behun@nic.cz>");
177MODULE_AUTHOR("Marek Behun <kabel@kernel.org>");
178MODULE_DESCRIPTION("Turris Mox Moxtet GPIO expander");
179MODULE_LICENSE("GPL v2");
178MODULE_DESCRIPTION("Turris Mox Moxtet GPIO expander");
179MODULE_LICENSE("GPL v2");