diff options
author | Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com> | 2021-05-26 08:47:09 -0400 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2021-06-02 10:51:18 +0100 |
commit | c1d3ab31e7356cb54de35991ac70176379d4caed (patch) | |
tree | a02db143b7a28ae6385f9669c3ad9a76a068e78a /include/linux/mfd | |
parent | 294fb2ce2de246e126f9f3a4568bfd8e568a2b5b (diff) |
mfd: sec: Remove unused irq_base in platform data
The 'irq_base' field of platform data structure is not assigned,
therefore its default value of 0 has no impact and can be safely
dropped.
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'include/linux/mfd')
-rw-r--r-- | include/linux/mfd/samsung/core.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/linux/mfd/samsung/core.h b/include/linux/mfd/samsung/core.h index bfde1b7c6303..9864f13b7814 100644 --- a/include/linux/mfd/samsung/core.h +++ b/include/linux/mfd/samsung/core.h @@ -67,7 +67,6 @@ struct sec_pmic_dev { struct i2c_client *i2c; unsigned long device_type; - int irq_base; int irq; struct regmap_irq_chip_data *irq_data; @@ -83,8 +82,6 @@ struct sec_platform_data { struct sec_opmode_data *opmode; int num_regulators; - int irq_base; - bool wakeup; bool buck_voltage_lock; |