altera-a10sr.c (4ea673e87e50684249223103ccdfef2c0ea83321) | altera-a10sr.c (37f127cf8112461cd9d8ec38551bc4af87cb27f5) |
---|---|
1// SPDX-License-Identifier: GPL-2.0-only 2/* 3 * Altera Arria10 DevKit System Resource MFD Driver 4 * 5 * Author: Thor Thayer <tthayer@opensource.altera.com> 6 * 7 * Copyright Intel Corporation (C) 2014-2016. All Rights Reserved 8 * 9 * SPI access for Altera Arria10 MAX5 System Resource Chip 10 * 11 * Adapted from DA9052 12 */ 13 14#include <linux/mfd/altera-a10sr.h> 15#include <linux/mfd/core.h> 16#include <linux/init.h> | 1// SPDX-License-Identifier: GPL-2.0-only 2/* 3 * Altera Arria10 DevKit System Resource MFD Driver 4 * 5 * Author: Thor Thayer <tthayer@opensource.altera.com> 6 * 7 * Copyright Intel Corporation (C) 2014-2016. All Rights Reserved 8 * 9 * SPI access for Altera Arria10 MAX5 System Resource Chip 10 * 11 * Adapted from DA9052 12 */ 13 14#include <linux/mfd/altera-a10sr.h> 15#include <linux/mfd/core.h> 16#include <linux/init.h> |
17#include <linux/module.h> |
|
17#include <linux/of.h> 18#include <linux/spi/spi.h> 19 20static const struct mfd_cell altr_a10sr_subdev_info[] = { 21 { 22 .name = "altr_a10sr_gpio", 23 .of_compatible = "altr,a10sr-gpio", 24 }, --- 145 unchanged lines hidden --- | 18#include <linux/of.h> 19#include <linux/spi/spi.h> 20 21static const struct mfd_cell altr_a10sr_subdev_info[] = { 22 { 23 .name = "altr_a10sr_gpio", 24 .of_compatible = "altr,a10sr-gpio", 25 }, --- 145 unchanged lines hidden --- |