max8998-irq.c (e5451c8f8330e03ad3cfa16048b4daf961af434f) | max8998-irq.c (d7d8d7a2405f8b6296660648e893fc3442269d81) |
---|---|
1/* 2 * Interrupt controller support for MAX8998 3 * 4 * Copyright (C) 2010 Samsung Electronics Co.Ltd 5 * Author: Joonyoung Shim <jy0922.shim@samsung.com> 6 * 7 * This program is free software; you can redistribute it and/or modify it 8 * under the terms of the GNU General Public License as published by the 9 * Free Software Foundation; either version 2 of the License, or (at your 10 * option) any later version. 11 * 12 */ | 1// SPDX-License-Identifier: GPL-2.0+ 2// 3// Interrupt controller support for MAX8998 4// 5// Copyright (C) 2010 Samsung Electronics Co.Ltd 6// Author: Joonyoung Shim <jy0922.shim@samsung.com> |
13 14#include <linux/device.h> 15#include <linux/interrupt.h> 16#include <linux/irq.h> 17#include <linux/irqdomain.h> 18#include <linux/mfd/max8998-private.h> 19 20struct max8998_irq_data { --- 256 unchanged lines hidden --- | 7 8#include <linux/device.h> 9#include <linux/interrupt.h> 10#include <linux/irq.h> 11#include <linux/irqdomain.h> 12#include <linux/mfd/max8998-private.h> 13 14struct max8998_irq_data { --- 256 unchanged lines hidden --- |