Unverified Commit 37613fa5 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman Committed by Mark Brown
Browse files

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: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 8b9f9d4d
Loading
Loading
Loading
Loading
+1 −4
Original line number Original line Diff line number Diff line
/* SPDX-License-Identifier: GPL-2.0 */
/*
/*
 * Register map access API internal header
 * Register map access API internal header
 *
 *
 * Copyright 2011 Wolfson Microelectronics plc
 * Copyright 2011 Wolfson Microelectronics plc
 *
 *
 * Author: Mark Brown <broonie@opensource.wolfsonmicro.com>
 * Author: Mark Brown <broonie@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.
 */
 */


#ifndef _REGMAP_INTERNAL_H
#ifndef _REGMAP_INTERNAL_H
+7 −11
Original line number Original line Diff line number Diff line
/*
// SPDX-License-Identifier: GPL-2.0
 * Register cache access API - flat caching support
//
 *
// Register cache access API - flat caching support
 * Copyright 2012 Wolfson Microelectronics plc
//
 *
// Copyright 2012 Wolfson Microelectronics plc
 * Author: Mark Brown <broonie@opensource.wolfsonmicro.com>
//
 *
// Author: Mark Brown <broonie@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.
 */


#include <linux/device.h>
#include <linux/device.h>
#include <linux/seq_file.h>
#include <linux/seq_file.h>
+7 −11
Original line number Original line Diff line number Diff line
/*
// SPDX-License-Identifier: GPL-2.0
 * Register cache access API - LZO caching support
//
 *
// Register cache access API - LZO caching support
 * Copyright 2011 Wolfson Microelectronics plc
//
 *
// Copyright 2011 Wolfson Microelectronics plc
 * Author: Dimitris Papastamos <dp@opensource.wolfsonmicro.com>
//
 *
// 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.
 */


#include <linux/device.h>
#include <linux/device.h>
#include <linux/lzo.h>
#include <linux/lzo.h>
+7 −11
Original line number Original line Diff line number Diff line
/*
// SPDX-License-Identifier: GPL-2.0
 * Register cache access API - rbtree caching support
//
 *
// Register cache access API - rbtree caching support
 * Copyright 2011 Wolfson Microelectronics plc
//
 *
// Copyright 2011 Wolfson Microelectronics plc
 * Author: Dimitris Papastamos <dp@opensource.wolfsonmicro.com>
//
 *
// 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.
 */


#include <linux/debugfs.h>
#include <linux/debugfs.h>
#include <linux/device.h>
#include <linux/device.h>
+7 −11
Original line number Original line Diff line number Diff line
/*
// SPDX-License-Identifier: GPL-2.0
 * Register cache access API
//
 *
// Register cache access API
 * Copyright 2011 Wolfson Microelectronics plc
//
 *
// Copyright 2011 Wolfson Microelectronics plc
 * Author: Dimitris Papastamos <dp@opensource.wolfsonmicro.com>
//
 *
// 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.
 */


#include <linux/bsearch.h>
#include <linux/bsearch.h>
#include <linux/device.h>
#include <linux/device.h>
Loading