diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2019-04-25 20:06:18 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2019-04-25 21:22:15 +0200 |
commit | 37613fa5b762a73073de3c2e23baa4a1da337e71 (patch) | |
tree | fc24e405af28da7bb4d7fc93d002e63b5038c3b7 /drivers/base/regmap/regcache-rbtree.c | |
parent | regmap: verify if register is writeable before writing operations (diff) | |
download | linux-37613fa5b762a73073de3c2e23baa4a1da337e71.tar.xz linux-37613fa5b762a73073de3c2e23baa4a1da337e71.zip |
regmap: add proper SPDX identifiers on files that did not have them.
There were a few files in the regmap code that did not have SPDX
identifiers on them, so fix that up. At the same time, remove the "free
form" text that specified the license of the file, as that is impossible
for any tool to properly parse.
Also, as Mark loves // comment markers, convert all of the headers to be
the same to make things look consistent :)
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/base/regmap/regcache-rbtree.c')
-rw-r--r-- | drivers/base/regmap/regcache-rbtree.c | 18 |
1 files changed, 7 insertions, 11 deletions
diff --git a/drivers/base/regmap/regcache-rbtree.c b/drivers/base/regmap/regcache-rbtree.c index 9cbb4b0cd01b..cfa29dc89bbf 100644 --- a/drivers/base/regmap/regcache-rbtree.c +++ b/drivers/base/regmap/regcache-rbtree.c @@ -1,14 +1,10 @@ -/* - * Register cache access API - rbtree caching support - * - * Copyright 2011 Wolfson Microelectronics plc - * - * Author: Dimitris Papastamos <dp@opensource.wolfsonmicro.com> - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License version 2 as - * published by the Free Software Foundation. - */ +// SPDX-License-Identifier: GPL-2.0 +// +// Register cache access API - rbtree caching support +// +// Copyright 2011 Wolfson Microelectronics plc +// +// Author: Dimitris Papastamos <dp@opensource.wolfsonmicro.com> #include <linux/debugfs.h> #include <linux/device.h> |