.. | .. |
---|
| 1 | +/* SPDX-License-Identifier: GPL-2.0-only */ |
---|
1 | 2 | /* |
---|
2 | 3 | * Defining registers address and its bit definitions of MAX77620 and MAX20024 |
---|
3 | 4 | * |
---|
4 | 5 | * Copyright (C) 2016 NVIDIA CORPORATION. All rights reserved. |
---|
5 | | - * |
---|
6 | | - * This program is free software; you can redistribute it and/or modify it |
---|
7 | | - * under the terms and conditions of the GNU General Public License, |
---|
8 | | - * version 2, as published by the Free Software Foundation. |
---|
9 | 6 | */ |
---|
10 | 7 | |
---|
11 | 8 | #ifndef _MFD_MAX77620_H_ |
---|
.. | .. |
---|
324 | 321 | enum max77620_chip_id { |
---|
325 | 322 | MAX77620, |
---|
326 | 323 | MAX20024, |
---|
| 324 | + MAX77663, |
---|
327 | 325 | }; |
---|
328 | 326 | |
---|
329 | 327 | struct max77620_chip { |
---|
.. | .. |
---|
331 | 329 | struct regmap *rmap; |
---|
332 | 330 | |
---|
333 | 331 | int chip_irq; |
---|
334 | | - int irq_base; |
---|
335 | 332 | |
---|
336 | 333 | /* chip id */ |
---|
337 | 334 | enum max77620_chip_id chip_id; |
---|