mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
d2912cb15b
Based on 2 normalized pattern(s): this program is free software you can redistribute it and or modify it under the terms of the gnu general public license version 2 as published by the free software foundation this program is free software you can redistribute it and or modify it under the terms of the gnu general public license version 2 as published by the free software foundation # extracted by the scancode license scanner the SPDX license identifier GPL-2.0-only has been chosen to replace the boilerplate/reference in 4122 file(s). Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Enrico Weigelt <info@metux.net> Reviewed-by: Kate Stewart <kstewart@linuxfoundation.org> Reviewed-by: Allison Randal <allison@lohutok.net> Cc: linux-spdx@vger.kernel.org Link: https://lkml.kernel.org/r/20190604081206.933168790@linutronix.de Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
33 lines
807 B
C
33 lines
807 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Copyright (c) 2016 Chen Zhong <chen.zhong@mediatek.com>
|
|
*/
|
|
|
|
#ifndef __MFD_MT6323_CORE_H__
|
|
#define __MFD_MT6323_CORE_H__
|
|
|
|
enum MT6323_IRQ_STATUS_numbers {
|
|
MT6323_IRQ_STATUS_SPKL_AB = 0,
|
|
MT6323_IRQ_STATUS_SPKL,
|
|
MT6323_IRQ_STATUS_BAT_L,
|
|
MT6323_IRQ_STATUS_BAT_H,
|
|
MT6323_IRQ_STATUS_WATCHDOG,
|
|
MT6323_IRQ_STATUS_PWRKEY,
|
|
MT6323_IRQ_STATUS_THR_L,
|
|
MT6323_IRQ_STATUS_THR_H,
|
|
MT6323_IRQ_STATUS_VBATON_UNDET,
|
|
MT6323_IRQ_STATUS_BVALID_DET,
|
|
MT6323_IRQ_STATUS_CHRDET,
|
|
MT6323_IRQ_STATUS_OV,
|
|
MT6323_IRQ_STATUS_LDO = 16,
|
|
MT6323_IRQ_STATUS_FCHRKEY,
|
|
MT6323_IRQ_STATUS_ACCDET,
|
|
MT6323_IRQ_STATUS_AUDIO,
|
|
MT6323_IRQ_STATUS_RTC,
|
|
MT6323_IRQ_STATUS_VPROC,
|
|
MT6323_IRQ_STATUS_VSYS,
|
|
MT6323_IRQ_STATUS_VPA,
|
|
MT6323_IRQ_STATUS_NR,
|
|
};
|
|
|
|
#endif /* __MFD_MT6323_CORE_H__ */
|