mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 14:11:52 +00:00
2874c5fd28
Based on 1 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 as published by the free software foundation either version 2 of the license or at your option any later version extracted by the scancode license scanner the SPDX license identifier GPL-2.0-or-later has been chosen to replace the boilerplate/reference in 3029 file(s). Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Allison Randal <allison@lohutok.net> Cc: linux-spdx@vger.kernel.org Link: https://lkml.kernel.org/r/20190527070032.746973796@linutronix.de Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21 lines
497 B
C
21 lines
497 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
* wm8994.h -- WM8994 MFD internals
|
|
*
|
|
* Copyright 2011 Wolfson Microelectronics PLC.
|
|
*
|
|
* Author: Mark Brown <broonie@opensource.wolfsonmicro.com>
|
|
*/
|
|
|
|
#ifndef __MFD_WM8994_H__
|
|
#define __MFD_WM8994_H__
|
|
|
|
#include <linux/regmap.h>
|
|
|
|
extern struct regmap_config wm1811_regmap_config;
|
|
extern struct regmap_config wm8994_regmap_config;
|
|
extern struct regmap_config wm8958_regmap_config;
|
|
extern struct regmap_config wm8994_base_regmap_config;
|
|
|
|
#endif
|