mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-17 14:57:36 +07:00
ea566a4b61
According to Documentation/process/license-rules.rst, move the SPDX License Identifier to the very top of the file. I used C++ comment style not only for the SPDX line but for the entire block because this seems Linus' preference [1]. I also dropped the parentheses to follow the examples in that document. [1] https://lkml.org/lkml/2017/11/25/133 Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
15 lines
313 B
Plaintext
15 lines
313 B
Plaintext
// SPDX-License-Identifier: GPL-2.0+ OR MIT
|
|
//
|
|
// Device Tree Source for UniPhier Reference Daughter Board
|
|
//
|
|
// Copyright (C) 2015-2017 Socionext Inc.
|
|
// Author: Masahiro Yamada <yamada.masahiro@socionext.com>
|
|
|
|
&i2c0 {
|
|
eeprom@50 {
|
|
compatible = "microchip,24lc128";
|
|
reg = <0x50>;
|
|
pagesize = <64>;
|
|
};
|
|
};
|