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

USB: atm: ueagle-atm.c: remove redundant license text

Now that we have the correct SPDX tag for the ueagle-atm.c file, the
wall of "boiler-plate" text is not needed.

This is done on a quest to remove the 700+ different ways that files in
the kernel describe the GPL license text. And there's unneeded stuff
like the address (sometimes incorrect) for the FSF which is never
needed.

No copyright headers or other non-license-description text was removed.

Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Matthieu CASTET <castet.matthieu@free.fr>
Cc: Stanislaw Gruszka <stf_xl@wp.pl>
Cc: Damien Bergamini <damien.bergamini@free.fr>
Cc: Duncan Sands <duncan.sands@free.fr>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

+1 -45
+1 -45
drivers/usb/atm/ueagle-atm.c
··· 1 1 // SPDX-License-Identifier: (GPL-2.0+ OR BSD-2-Clause) 2 - /*- 2 + /* 3 3 * Copyright (c) 2003, 2004 4 4 * Damien Bergamini <damien.bergamini@free.fr>. All rights reserved. 5 5 * 6 6 * Copyright (c) 2005-2007 Matthieu Castet <castet.matthieu@free.fr> 7 7 * Copyright (c) 2005-2007 Stanislaw Gruszka <stf_xl@wp.pl> 8 - * 9 - * This software is available to you under a choice of one of two 10 - * licenses. You may choose to be licensed under the terms of the GNU 11 - * General Public License (GPL) Version 2, available from the file 12 - * COPYING in the main directory of this source tree, or the 13 - * BSD license below: 14 - * 15 - * Redistribution and use in source and binary forms, with or without 16 - * modification, are permitted provided that the following conditions 17 - * are met: 18 - * 1. Redistributions of source code must retain the above copyright 19 - * notice unmodified, this list of conditions, and the following 20 - * disclaimer. 21 - * 2. Redistributions in binary form must reproduce the above copyright 22 - * notice, this list of conditions and the following disclaimer in the 23 - * documentation and/or other materials provided with the distribution. 24 - * 25 - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 26 - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 27 - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 28 - * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 29 - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 30 - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 31 - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 32 - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 33 - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 34 - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 35 - * SUCH DAMAGE. 36 - * 37 - * GPL license : 38 - * This program is free software; you can redistribute it and/or 39 - * modify it under the terms of the GNU General Public License 40 - * as published by the Free Software Foundation; either version 2 41 - * of the License, or (at your option) any later version. 42 - * 43 - * This program is distributed in the hope that it will be useful, 44 - * but WITHOUT ANY WARRANTY; without even the implied warranty of 45 - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 46 - * GNU General Public License for more details. 47 - * 48 - * You should have received a copy of the GNU General Public License 49 - * along with this program; if not, write to the Free Software 50 - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 51 - * 52 8 * 53 9 * HISTORY : some part of the code was base on ueagle 1.3 BSD driver, 54 10 * Damien Bergamini agree to put his code under a DUAL GPL/BSD license.