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

ibmveth: Update module information and version

Add an entry to the MAINTAINERS file for ibmveth, clean up the copyright
and add all authors. Change the name of the module to reflect the product name
over the last number of years.

Considering all the changes we have made, bump the driver version.

Signed-off-by: Anton Blanchard <anton@samba.org>
Signed-off-by: Santiago Leon <santil@linux.vnet.ibm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by

Santiago Leon and committed by
David S. Miller
9d348af4 c2296097

+54 -48
+6
MAINTAINERS
··· 2856 2856 S: Supported 2857 2857 F: drivers/scsi/ipr.* 2858 2858 2859 + IBM Power Virtual Ethernet Device Driver 2860 + M: Santiago Leon <santil@linux.vnet.ibm.com> 2861 + L: netdev@vger.kernel.org 2862 + S: Supported 2863 + F: drivers/net/ibmveth.* 2864 + 2859 2865 IBM ServeRAID RAID DRIVER 2860 2866 P: Jack Hammer 2861 2867 M: Dave Jeffery <ipslinux@adaptec.com>
+23 -25
drivers/net/ibmveth.c
··· 1 1 /* 2 - * IBM eServer i/pSeries Virtual Ethernet Device Driver 3 - * Copyright (C) 2003 IBM Corp. 4 - * Originally written by Dave Larson (larson1@us.ibm.com) 5 - * Maintained by Santiago Leon (santil@us.ibm.com) 2 + * IBM Power Virtual Ethernet Device Driver 6 3 * 7 - * This program is free software; you can redistribute it and/or modify 8 - * it under the terms of the GNU General Public License as published by 9 - * the Free Software Foundation; either version 2 of the License, or 10 - * (at your option) any later version. 4 + * This program is free software; you can redistribute it and/or modify 5 + * it under the terms of the GNU General Public License as published by 6 + * the Free Software Foundation; either version 2 of the License, or 7 + * (at your option) any later version. 11 8 * 12 - * This program is distributed in the hope that it will be useful, 13 - * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 - * GNU General Public License for more details. 9 + * This program is distributed in the hope that it will be useful, 10 + * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 + * GNU General Public License for more details. 16 13 * 17 - * You should have received a copy of the GNU General Public License 18 - * along with this program; if not, write to the Free Software 19 - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 20 - * USA 14 + * You should have received a copy of the GNU General Public License 15 + * along with this program; if not, write to the Free Software 16 + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 21 17 * 22 - * This module contains the implementation of a virtual ethernet device 23 - * for use with IBM i/pSeries LPAR Linux. It utilizes the logical LAN 24 - * option of the RS/6000 Platform Architechture to interface with virtual 25 - * ethernet NICs that are presented to the partition by the hypervisor. 18 + * Copyright (C) IBM Corporation, 2003, 2010 19 + * 20 + * Authors: Dave Larson <larson1@us.ibm.com> 21 + * Santiago Leon <santil@linux.vnet.ibm.com> 22 + * Brian King <brking@linux.vnet.ibm.com> 23 + * Robert Jennings <rcj@linux.vnet.ibm.com> 24 + * Anton Blanchard <anton@au.ibm.com> 26 25 */ 27 26 28 27 #include <linux/module.h> ··· 57 58 58 59 59 60 static const char ibmveth_driver_name[] = "ibmveth"; 60 - static const char ibmveth_driver_string[] = "IBM i/pSeries Virtual Ethernet " 61 - "Driver"; 62 - #define ibmveth_driver_version "1.03" 61 + static const char ibmveth_driver_string[] = "IBM Power Virtual Ethernet Driver"; 62 + #define ibmveth_driver_version "1.04" 63 63 64 - MODULE_AUTHOR("Santiago Leon <santil@us.ibm.com>"); 65 - MODULE_DESCRIPTION("IBM i/pSeries Virtual Ethernet Driver"); 64 + MODULE_AUTHOR("Santiago Leon <santil@linux.vnet.ibm.com>"); 65 + MODULE_DESCRIPTION("IBM Power Virtual Ethernet Driver"); 66 66 MODULE_LICENSE("GPL"); 67 67 MODULE_VERSION(ibmveth_driver_version); 68 68
+25 -23
drivers/net/ibmveth.h
··· 1 - /**************************************************************************/ 2 - /* */ 3 - /* IBM eServer i/[Series Virtual Ethernet Device Driver */ 4 - /* Copyright (C) 2003 IBM Corp. */ 5 - /* Dave Larson (larson1@us.ibm.com) */ 6 - /* Santiago Leon (santil@us.ibm.com) */ 7 - /* */ 8 - /* This program is free software; you can redistribute it and/or modify */ 9 - /* it under the terms of the GNU General Public License as published by */ 10 - /* the Free Software Foundation; either version 2 of the License, or */ 11 - /* (at your option) any later version. */ 12 - /* */ 13 - /* This program is distributed in the hope that it will be useful, */ 14 - /* but WITHOUT ANY WARRANTY; without even the implied warranty of */ 15 - /* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */ 16 - /* GNU General Public License for more details. */ 17 - /* */ 18 - /* You should have received a copy of the GNU General Public License */ 19 - /* along with this program; if not, write to the Free Software */ 20 - /* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 */ 21 - /* USA */ 22 - /* */ 23 - /**************************************************************************/ 1 + /* 2 + * IBM Power Virtual Ethernet Device Driver 3 + * 4 + * This program is free software; you can redistribute it and/or modify 5 + * it under the terms of the GNU General Public License as published by 6 + * the Free Software Foundation; either version 2 of the License, or 7 + * (at your option) any later version. 8 + * 9 + * This program is distributed in the hope that it will be useful, 10 + * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 + * GNU General Public License for more details. 13 + * 14 + * You should have received a copy of the GNU General Public License 15 + * along with this program; if not, write to the Free Software 16 + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 17 + * 18 + * Copyright (C) IBM Corporation, 2003, 2010 19 + * 20 + * Authors: Dave Larson <larson1@us.ibm.com> 21 + * Santiago Leon <santil@linux.vnet.ibm.com> 22 + * Brian King <brking@linux.vnet.ibm.com> 23 + * Robert Jennings <rcj@linux.vnet.ibm.com> 24 + * Anton Blanchard <anton@au.ibm.com> 25 + */ 24 26 25 27 #ifndef _IBMVETH_H 26 28 #define _IBMVETH_H