Source
1
+
// SPDX-License-Identifier: GPL-2.0-only
1
2
/*
2
3
* Copyright 2014 Belkin Inc.
3
4
* Copyright 2015 Andrew Lunn <andrew@lunn.ch>
4
-
*
5
-
* This program is free software; you can redistribute it and/or modify
6
-
* it under the terms of the GNU General Public License as published by
7
-
* the Free Software Foundation; version 2 of the License.
8
5
*/
9
6
10
7
#include <linux/i2c.h>
11
8
#include <linux/leds.h>
12
9
#include <linux/module.h>
13
10
#include <linux/of.h>
14
11
#include <linux/of_device.h>
15
12
#include <linux/regmap.h>
16
13
#include <linux/slab.h>
17
14