| .. | .. |
|---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-only |
|---|
| 1 | 2 | /* |
|---|
| 2 | 3 | * Base driver for Maxim MAX8925 |
|---|
| 3 | 4 | * |
|---|
| 4 | 5 | * Copyright (C) 2009-2010 Marvell International Ltd. |
|---|
| 5 | 6 | * Haojian Zhuang <haojian.zhuang@marvell.com> |
|---|
| 6 | | - * |
|---|
| 7 | | - * This program is free software; you can redistribute it and/or modify |
|---|
| 8 | | - * it under the terms of the GNU General Public License version 2 as |
|---|
| 9 | | - * published by the Free Software Foundation. |
|---|
| 10 | 7 | */ |
|---|
| 11 | 8 | |
|---|
| 12 | 9 | #include <linux/kernel.h> |
|---|
| 13 | | -#include <linux/module.h> |
|---|
| 10 | +#include <linux/init.h> |
|---|
| 14 | 11 | #include <linux/i2c.h> |
|---|
| 15 | 12 | #include <linux/irq.h> |
|---|
| 16 | 13 | #include <linux/interrupt.h> |
|---|
| .. | .. |
|---|
| 919 | 916 | free_irq(chip->tsc_irq, chip); |
|---|
| 920 | 917 | mfd_remove_devices(chip->dev); |
|---|
| 921 | 918 | } |
|---|
| 922 | | - |
|---|
| 923 | | - |
|---|
| 924 | | -MODULE_DESCRIPTION("PMIC Driver for Maxim MAX8925"); |
|---|
| 925 | | -MODULE_AUTHOR("Haojian Zhuang <haojian.zhuang@marvell.com"); |
|---|
| 926 | | -MODULE_LICENSE("GPL"); |
|---|