gpio-sifive.c (3b5560c8f074aee8839b66093b4d565702a6921d) | gpio-sifive.c (6b4c76ded3582651afca319f2ca58c22ec908529) |
---|---|
1// SPDX-License-Identifier: GPL-2.0 2/* 3 * Copyright (C) 2019 SiFive 4 */ 5 6#include <linux/bitops.h> 7#include <linux/device.h> 8#include <linux/errno.h> --- 253 unchanged lines hidden (view full) --- 262 263static struct platform_driver sifive_gpio_driver = { 264 .probe = sifive_gpio_probe, 265 .driver = { 266 .name = "sifive_gpio", 267 .of_match_table = sifive_gpio_match, 268 }, 269}; | 1// SPDX-License-Identifier: GPL-2.0 2/* 3 * Copyright (C) 2019 SiFive 4 */ 5 6#include <linux/bitops.h> 7#include <linux/device.h> 8#include <linux/errno.h> --- 253 unchanged lines hidden (view full) --- 262 263static struct platform_driver sifive_gpio_driver = { 264 .probe = sifive_gpio_probe, 265 .driver = { 266 .name = "sifive_gpio", 267 .of_match_table = sifive_gpio_match, 268 }, 269}; |
270builtin_platform_driver(sifive_gpio_driver) | 270module_platform_driver(sifive_gpio_driver) 271 272MODULE_AUTHOR("Yash Shah <yash.shah@sifive.com>"); 273MODULE_DESCRIPTION("SiFive GPIO driver"); 274MODULE_LICENSE("GPL"); |