mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
292816a637
Follow the recent trend for the license description, and also fix the wrongly stated X11 to MIT. As already pointed on the DT ML, the X11 license text [1] is explicitly for the X Consortium and has a couple of extra clauses. The MIT license text [2] is actually what the current DT files claim. [1] https://spdx.org/licenses/X11.html [2] https://spdx.org/licenses/MIT.html Signed-off-by: Gregory CLEMENT <gregory.clement@bootlin.com>
11 lines
334 B
Plaintext
11 lines
334 B
Plaintext
// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
|
/*
|
|
* Copyright (C) 2016 Marvell Technology Group Ltd.
|
|
*/
|
|
|
|
/* Common definitions used by Armada 7K/8K DTs */
|
|
#define PASTER(x, y) x ## y
|
|
#define EVALUATOR(x, y) PASTER(x, y)
|
|
#define CP110_LABEL(name) EVALUATOR(CP110_NAME, EVALUATOR(_, name))
|
|
#define ADDRESSIFY(addr) EVALUATOR(0x, addr)
|