Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

ipmi: Add or fix SPDX-License-Identifier in all files

And get rid of the license text that is no longer necessary.

Signed-off-by: Corey Minyard <cminyard@mvista.com>
Cc: Kees Cook <keescook@chromium.org>
Cc: Alistair Popple <alistair@popple.id.au>
Cc: Jeremy Kerr <jk@ozlabs.org>
Cc: Joel Stanley <joel@jms.id.au>
Cc: Rocky Craig <rocky.craig@hp.com>

+27 -288
+1 -5
drivers/char/ipmi/bt-bmc.c
··· 1 + // SPDX-License-Identifier: GPL-2.0+ 1 2 /* 2 3 * Copyright (c) 2015-2016, IBM Corporation. 3 - * 4 - * This program is free software; you can redistribute it and/or 5 - * modify it under the terms of the GNU General Public License 6 - * as published by the Free Software Foundation; either version 7 - * 2 of the License, or (at your option) any later version. 8 4 */ 9 5 10 6 #include <linux/atomic.h>
+2 -20
drivers/char/ipmi/ipmi_bt_sm.c
··· 1 + // SPDX-License-Identifier: GPL-2.0+ 1 2 /* 2 3 * ipmi_bt_sm.c 3 4 * ··· 6 5 * of the driver architecture at http://sourceforge.net/projects/openipmi 7 6 * 8 7 * Author: Rocky Craig <first.last@hp.com> 9 - * 10 - * This program is free software; you can redistribute it and/or modify it 11 - * under the terms of the GNU General Public License as published by the 12 - * Free Software Foundation; either version 2 of the License, or (at your 13 - * option) any later version. 14 - * 15 - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED 16 - * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 17 - * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 18 - * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 19 - * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 20 - * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS 21 - * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND 22 - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR 23 - * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE 24 - * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 25 - * 26 - * You should have received a copy of the GNU General Public License along 27 - * with this program; if not, write to the Free Software Foundation, Inc., 28 - * 675 Mass Ave, Cambridge, MA 02139, USA. */ 8 + */ 29 9 30 10 #include <linux/kernel.h> /* For printk. */ 31 11 #include <linux/string.h>
+1 -21
drivers/char/ipmi/ipmi_devintf.c
··· 1 + // SPDX-License-Identifier: GPL-2.0+ 1 2 /* 2 3 * ipmi_devintf.c 3 4 * ··· 9 8 * source@mvista.com 10 9 * 11 10 * Copyright 2002 MontaVista Software Inc. 12 - * 13 - * This program is free software; you can redistribute it and/or modify it 14 - * under the terms of the GNU General Public License as published by the 15 - * Free Software Foundation; either version 2 of the License, or (at your 16 - * option) any later version. 17 - * 18 - * 19 - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED 20 - * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 21 - * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 22 - * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 23 - * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 24 - * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS 25 - * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND 26 - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR 27 - * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE 28 - * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 29 - * 30 - * You should have received a copy of the GNU General Public License along 31 - * with this program; if not, write to the Free Software Foundation, Inc., 32 - * 675 Mass Ave, Cambridge, MA 02139, USA. 33 11 */ 34 12 35 13 #include <linux/module.h>
+1 -1
drivers/char/ipmi/ipmi_dmi.c
··· 1 - // SPDX-License-Identifier: GPL-2.0 1 + // SPDX-License-Identifier: GPL-2.0+ 2 2 /* 3 3 * A hack to create a platform device from a DMI entry. This will 4 4 * allow autoloading of the IPMI drive based on SMBIOS entries.
+1 -1
drivers/char/ipmi/ipmi_dmi.h
··· 1 - /* SPDX-License-Identifier: GPL-2.0 */ 1 + /* SPDX-License-Identifier: GPL-2.0+ */ 2 2 /* 3 3 * DMI defines for use by IPMI 4 4 */
+1 -21
drivers/char/ipmi/ipmi_kcs_sm.c
··· 1 + // SPDX-License-Identifier: GPL-2.0+ 1 2 /* 2 3 * ipmi_kcs_sm.c 3 4 * ··· 9 8 * source@mvista.com 10 9 * 11 10 * Copyright 2002 MontaVista Software Inc. 12 - * 13 - * This program is free software; you can redistribute it and/or modify it 14 - * under the terms of the GNU General Public License as published by the 15 - * Free Software Foundation; either version 2 of the License, or (at your 16 - * option) any later version. 17 - * 18 - * 19 - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED 20 - * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 21 - * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 22 - * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 23 - * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 24 - * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS 25 - * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND 26 - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR 27 - * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE 28 - * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 29 - * 30 - * You should have received a copy of the GNU General Public License along 31 - * with this program; if not, write to the Free Software Foundation, Inc., 32 - * 675 Mass Ave, Cambridge, MA 02139, USA. 33 11 */ 34 12 35 13 /*
+1 -21
drivers/char/ipmi/ipmi_msghandler.c
··· 1 + // SPDX-License-Identifier: GPL-2.0+ 1 2 /* 2 3 * ipmi_msghandler.c 3 4 * ··· 9 8 * source@mvista.com 10 9 * 11 10 * Copyright 2002 MontaVista Software Inc. 12 - * 13 - * This program is free software; you can redistribute it and/or modify it 14 - * under the terms of the GNU General Public License as published by the 15 - * Free Software Foundation; either version 2 of the License, or (at your 16 - * option) any later version. 17 - * 18 - * 19 - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED 20 - * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 21 - * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 22 - * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 23 - * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 24 - * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS 25 - * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND 26 - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR 27 - * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE 28 - * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 29 - * 30 - * You should have received a copy of the GNU General Public License along 31 - * with this program; if not, write to the Free Software Foundation, Inc., 32 - * 675 Mass Ave, Cambridge, MA 02139, USA. 33 11 */ 34 12 35 13 #include <linux/module.h>
+1 -5
drivers/char/ipmi/ipmi_powernv.c
··· 1 + // SPDX-License-Identifier: GPL-2.0+ 1 2 /* 2 3 * PowerNV OPAL IPMI driver 3 4 * 4 5 * Copyright 2014 IBM Corp. 5 - * 6 - * This program is free software; you can redistribute it and/or modify it 7 - * under the terms of the GNU General Public License as published by the Free 8 - * Software Foundation; either version 2 of the License, or (at your option) 9 - * any later version. 10 6 */ 11 7 12 8 #define pr_fmt(fmt) "ipmi-powernv: " fmt
+1 -21
drivers/char/ipmi/ipmi_poweroff.c
··· 1 + // SPDX-License-Identifier: GPL-2.0+ 1 2 /* 2 3 * ipmi_poweroff.c 3 4 * ··· 10 9 * source@mvista.com 11 10 * 12 11 * Copyright 2002,2004 MontaVista Software Inc. 13 - * 14 - * This program is free software; you can redistribute it and/or modify it 15 - * under the terms of the GNU General Public License as published by the 16 - * Free Software Foundation; either version 2 of the License, or (at your 17 - * option) any later version. 18 - * 19 - * 20 - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED 21 - * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 22 - * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 23 - * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 24 - * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 25 - * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS 26 - * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND 27 - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR 28 - * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE 29 - * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 30 - * 31 - * You should have received a copy of the GNU General Public License along 32 - * with this program; if not, write to the Free Software Foundation, Inc., 33 - * 675 Mass Ave, Cambridge, MA 02139, USA. 34 12 */ 35 13 #include <linux/module.h> 36 14 #include <linux/moduleparam.h>
+1
drivers/char/ipmi/ipmi_si.h
··· 1 + /* SPDX-License-Identifier: GPL-2.0+ */ 1 2 /* 2 3 * ipmi_si.h 3 4 *
+1
drivers/char/ipmi/ipmi_si_hardcode.c
··· 1 + // SPDX-License-Identifier: GPL-2.0+ 1 2 2 3 #include <linux/moduleparam.h> 3 4 #include "ipmi_si.h"
+1
drivers/char/ipmi/ipmi_si_hotmod.c
··· 1 + // SPDX-License-Identifier: GPL-2.0+ 1 2 /* 2 3 * ipmi_si_hotmod.c 3 4 *
+1 -21
drivers/char/ipmi/ipmi_si_intf.c
··· 1 + // SPDX-License-Identifier: GPL-2.0+ 1 2 /* 2 3 * ipmi_si.c 3 4 * ··· 11 10 * 12 11 * Copyright 2002 MontaVista Software Inc. 13 12 * Copyright 2006 IBM Corp., Christian Krafft <krafft@de.ibm.com> 14 - * 15 - * This program is free software; you can redistribute it and/or modify it 16 - * under the terms of the GNU General Public License as published by the 17 - * Free Software Foundation; either version 2 of the License, or (at your 18 - * option) any later version. 19 - * 20 - * 21 - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED 22 - * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 23 - * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 24 - * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 25 - * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 26 - * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS 27 - * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND 28 - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR 29 - * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE 30 - * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 31 - * 32 - * You should have received a copy of the GNU General Public License along 33 - * with this program; if not, write to the Free Software Foundation, Inc., 34 - * 675 Mass Ave, Cambridge, MA 02139, USA. 35 13 */ 36 14 37 15 /*
+1
drivers/char/ipmi/ipmi_si_mem_io.c
··· 1 + // SPDX-License-Identifier: GPL-2.0+ 1 2 2 3 #include <linux/io.h> 3 4 #include "ipmi_si.h"
+1
drivers/char/ipmi/ipmi_si_parisc.c
··· 1 + // SPDX-License-Identifier: GPL-2.0+ 1 2 2 3 #include <linux/module.h> 3 4 #include <asm/hardware.h> /* for register_parisc_driver() stuff */
+1
drivers/char/ipmi/ipmi_si_pci.c
··· 1 + // SPDX-License-Identifier: GPL-2.0+ 1 2 /* 2 3 * ipmi_si_pci.c 3 4 *
+1
drivers/char/ipmi/ipmi_si_platform.c
··· 1 + // SPDX-License-Identifier: GPL-2.0+ 1 2 /* 2 3 * ipmi_si_platform.c 3 4 *
+1
drivers/char/ipmi/ipmi_si_port_io.c
··· 1 + // SPDX-License-Identifier: GPL-2.0+ 1 2 2 3 #include <linux/io.h> 3 4 #include "ipmi_si.h"
+1 -21
drivers/char/ipmi/ipmi_si_sm.h
··· 1 + /* SPDX-License-Identifier: GPL-2.0+ */ 1 2 /* 2 3 * ipmi_si_sm.h 3 4 * ··· 12 11 * source@mvista.com 13 12 * 14 13 * Copyright 2002 MontaVista Software Inc. 15 - * 16 - * This program is free software; you can redistribute it and/or modify it 17 - * under the terms of the GNU General Public License as published by the 18 - * Free Software Foundation; either version 2 of the License, or (at your 19 - * option) any later version. 20 - * 21 - * 22 - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED 23 - * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 24 - * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 25 - * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 26 - * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 27 - * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS 28 - * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND 29 - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR 30 - * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE 31 - * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 32 - * 33 - * You should have received a copy of the GNU General Public License along 34 - * with this program; if not, write to the Free Software Foundation, Inc., 35 - * 675 Mass Ave, Cambridge, MA 02139, USA. 36 14 */ 37 15 38 16 #include <linux/ipmi.h>
+2 -22
drivers/char/ipmi/ipmi_smic_sm.c
··· 1 + // SPDX-License-Identifier: GPL-2.0+ 1 2 /* 2 3 * ipmi_smic_sm.c 3 4 * ··· 19 18 * copyright notice: 20 19 * (c) Copyright 2001 Grant Grundler (c) Copyright 21 20 * 2001 Hewlett-Packard Company 22 - * 23 - * 24 - * This program is free software; you can redistribute it and/or modify it 25 - * under the terms of the GNU General Public License as published by the 26 - * Free Software Foundation; either version 2 of the License, or (at your 27 - * option) any later version. 28 - * 29 - * 30 - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED 31 - * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 32 - * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 33 - * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 34 - * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 35 - * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS 36 - * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND 37 - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR 38 - * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE 39 - * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 40 - * 41 - * You should have received a copy of the GNU General Public License along 42 - * with this program; if not, write to the Free Software Foundation, Inc., 43 - * 675 Mass Ave, Cambridge, MA 02139, USA. */ 21 + */ 44 22 45 23 #include <linux/kernel.h> /* For printk. */ 46 24 #include <linux/string.h>
+1 -5
drivers/char/ipmi/ipmi_ssif.c
··· 1 + // SPDX-License-Identifier: GPL-2.0+ 1 2 /* 2 3 * ipmi_ssif.c 3 4 * ··· 14 13 * 15 14 * Copyright 2003 Intel Corporation 16 15 * Copyright 2005 MontaVista Software 17 - * 18 - * This program is free software; you can redistribute it and/or modify it 19 - * under the terms of the GNU General Public License as published by the 20 - * Free Software Foundation; either version 2 of the License, or (at your 21 - * option) any later version. 22 16 */ 23 17 24 18 /*
+1 -21
drivers/char/ipmi/ipmi_watchdog.c
··· 1 + // SPDX-License-Identifier: GPL-2.0+ 1 2 /* 2 3 * ipmi_watchdog.c 3 4 * ··· 9 8 * source@mvista.com 10 9 * 11 10 * Copyright 2002 MontaVista Software Inc. 12 - * 13 - * This program is free software; you can redistribute it and/or modify it 14 - * under the terms of the GNU General Public License as published by the 15 - * Free Software Foundation; either version 2 of the License, or (at your 16 - * option) any later version. 17 - * 18 - * 19 - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED 20 - * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 21 - * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 22 - * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 23 - * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 24 - * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS 25 - * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND 26 - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR 27 - * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE 28 - * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 29 - * 30 - * You should have received a copy of the GNU General Public License along 31 - * with this program; if not, write to the Free Software Foundation, Inc., 32 - * 675 Mass Ave, Cambridge, MA 02139, USA. 33 11 */ 34 12 35 13 #include <linux/module.h>
+1 -2
include/linux/ipmi-fru.h
··· 1 + /* SPDX-License-Identifier: GPL-2.0+ */ 1 2 /* 2 3 * Copyright (C) 2012 CERN (www.cern.ch) 3 4 * Author: Alessandro Rubini <rubini@gnudd.com> 4 - * 5 - * Released according to the GNU GPL, version 2 or any later version. 6 5 * 7 6 * This work is part of the White Rabbit project, a research effort led 8 7 * by CERN, the European Institute for Nuclear Research.
+1 -20
include/linux/ipmi.h
··· 1 + /* SPDX-License-Identifier: GPL-2.0+ */ 1 2 /* 2 3 * ipmi.h 3 4 * ··· 10 9 * 11 10 * Copyright 2002 MontaVista Software Inc. 12 11 * 13 - * This program is free software; you can redistribute it and/or modify it 14 - * under the terms of the GNU General Public License as published by the 15 - * Free Software Foundation; either version 2 of the License, or (at your 16 - * option) any later version. 17 - * 18 - * 19 - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED 20 - * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 21 - * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 22 - * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 23 - * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 24 - * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS 25 - * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND 26 - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR 27 - * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE 28 - * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 29 - * 30 - * You should have received a copy of the GNU General Public License along 31 - * with this program; if not, write to the Free Software Foundation, Inc., 32 - * 675 Mass Ave, Cambridge, MA 02139, USA. 33 12 */ 34 13 #ifndef __LINUX_IPMI_H 35 14 #define __LINUX_IPMI_H
+1 -20
include/linux/ipmi_smi.h
··· 1 + /* SPDX-License-Identifier: GPL-2.0+ */ 1 2 /* 2 3 * ipmi_smi.h 3 4 * ··· 10 9 * 11 10 * Copyright 2002 MontaVista Software Inc. 12 11 * 13 - * This program is free software; you can redistribute it and/or modify it 14 - * under the terms of the GNU General Public License as published by the 15 - * Free Software Foundation; either version 2 of the License, or (at your 16 - * option) any later version. 17 - * 18 - * 19 - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED 20 - * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 21 - * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 22 - * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 23 - * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 24 - * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS 25 - * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND 26 - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR 27 - * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE 28 - * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 29 - * 30 - * You should have received a copy of the GNU General Public License along 31 - * with this program; if not, write to the Free Software Foundation, Inc., 32 - * 675 Mass Ave, Cambridge, MA 02139, USA. 33 12 */ 34 13 35 14 #ifndef __LINUX_IPMI_SMI_H
-20
include/uapi/linux/ipmi.h
··· 10 10 * 11 11 * Copyright 2002 MontaVista Software Inc. 12 12 * 13 - * This program is free software; you can redistribute it and/or modify it 14 - * under the terms of the GNU General Public License as published by the 15 - * Free Software Foundation; either version 2 of the License, or (at your 16 - * option) any later version. 17 - * 18 - * 19 - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED 20 - * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 21 - * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 22 - * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 23 - * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 24 - * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS 25 - * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND 26 - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR 27 - * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE 28 - * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 29 - * 30 - * You should have received a copy of the GNU General Public License along 31 - * with this program; if not, write to the Free Software Foundation, Inc., 32 - * 675 Mass Ave, Cambridge, MA 02139, USA. 33 13 */ 34 14 35 15 #ifndef _UAPI__LINUX_IPMI_H
-20
include/uapi/linux/ipmi_msgdefs.h
··· 10 10 * 11 11 * Copyright 2002 MontaVista Software Inc. 12 12 * 13 - * This program is free software; you can redistribute it and/or modify it 14 - * under the terms of the GNU General Public License as published by the 15 - * Free Software Foundation; either version 2 of the License, or (at your 16 - * option) any later version. 17 - * 18 - * 19 - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED 20 - * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 21 - * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 22 - * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 23 - * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 24 - * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS 25 - * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND 26 - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR 27 - * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE 28 - * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 29 - * 30 - * You should have received a copy of the GNU General Public License along 31 - * with this program; if not, write to the Free Software Foundation, Inc., 32 - * 675 Mass Ave, Cambridge, MA 02139, USA. 33 13 */ 34 14 35 15 #ifndef __LINUX_IPMI_MSGDEFS_H