Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

mfd: sec: Remove fields not used since regmap conversion

These were all used by the open coded I/O and IRQ implementations and are
no longer referenced now that the regmap core variants are used instead.

Signed-off-by: Mark Brown <broonie@linaro.org>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>

authored by

Mark Brown and committed by
Samuel Ortiz
dc664182 e51c288e

-6
-6
include/linux/mfd/samsung/core.h
··· 14 14 #ifndef __LINUX_MFD_SEC_CORE_H 15 15 #define __LINUX_MFD_SEC_CORE_H 16 16 17 - #define NUM_IRQ_REGS 4 18 - 19 17 enum sec_device_type { 20 18 S5M8751X, 21 19 S5M8763X, ··· 42 44 struct regmap *regmap; 43 45 struct i2c_client *i2c; 44 46 struct i2c_client *rtc; 45 - struct mutex iolock; 46 - struct mutex irqlock; 47 47 48 48 int device_type; 49 49 int irq_base; ··· 49 53 struct regmap_irq_chip_data *irq_data; 50 54 51 55 int ono; 52 - u8 irq_masks_cur[NUM_IRQ_REGS]; 53 - u8 irq_masks_cache[NUM_IRQ_REGS]; 54 56 int type; 55 57 bool wakeup; 56 58 };