On Thu, 23 May 2019, TonyWWang-oc wrote: > --- /dev/null > +++ b/arch/x86/kernel/cpu/zhaoxin.c > @@ -0,0 +1,178 @@ > +// SPDX-License-Identifier: GPL-2.0 > +/* > + * Zhaoxin Processor Support for Linux > + * > + * Copyright (c) 2019 Shanghai Zhaoxin Semiconductor Co., Ltd. > + * > + * Author: David Wang <davidw...@zhaoxin.com> > + * > + * This file is licensed under the terms of the GNU General > + * License v2.0 or later. See file COPYING for details.
Please remove this boilerplate text. The SPDX license identifier is sufficient, but looking at that: > +// SPDX-License-Identifier: GPL-2.0 That clearly disagrees with your boilerplate text which says 'v2.0 or later'. Assumed that you want or later, then the SPDX id needs to say so. // SPDX-License-Identifier: GPL-2.0-or-later Thanks, tglx