mirror of
https://github.com/torvalds/linux.git
synced 2024-12-25 12:21:37 +00:00
drivers/net: fix up stale paths from driver reorg
The reorganization of the driver layout in drivers/net left behind some stale paths in comments and in Kconfig help text. Bring them up to date. No actual change to any code takes place here. Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> CC: Jeff Kirsher <jeffrey.t.kirsher@intel.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
e94d5b7aec
commit
3396c7823e
@ -89,7 +89,7 @@ TTY_DRIVER_MAGIC 0x5402 tty_driver include/linux/tty_driver.h
|
||||
MGSLPC_MAGIC 0x5402 mgslpc_info drivers/char/pcmcia/synclink_cs.c
|
||||
TTY_LDISC_MAGIC 0x5403 tty_ldisc include/linux/tty_ldisc.h
|
||||
USB_SERIAL_MAGIC 0x6702 usb_serial drivers/usb/serial/usb-serial.h
|
||||
FULL_DUPLEX_MAGIC 0x6969 drivers/net/tulip/de2104x.c
|
||||
FULL_DUPLEX_MAGIC 0x6969 drivers/net/ethernet/dec/tulip/de2104x.c
|
||||
USB_BLUETOOTH_MAGIC 0x6d02 usb_bluetooth drivers/usb/class/bluetty.c
|
||||
RFCOMM_TTY_MAGIC 0x6d02 net/bluetooth/rfcomm/tty.c
|
||||
USB_SERIAL_PORT_MAGIC 0x7301 usb_serial_port drivers/usb/serial/usb-serial.h
|
||||
|
@ -62,7 +62,8 @@ The MDIO bus
|
||||
5) The bus must also be declared somewhere as a device, and registered.
|
||||
|
||||
As an example for how one driver implemented an mdio bus driver, see
|
||||
drivers/net/gianfar_mii.c and arch/ppc/syslib/mpc85xx_devices.c
|
||||
drivers/net/ethernet/freescale/fsl_pq_mdio.c and an associated DTS file
|
||||
for one of the users. (e.g. "git grep fsl,.*-mdio arch/powerpc/boot/dts/")
|
||||
|
||||
Connecting to a PHY
|
||||
|
||||
|
@ -89,7 +89,7 @@ TTY_DRIVER_MAGIC 0x5402 tty_driver include/linux/tty_driver.h
|
||||
MGSLPC_MAGIC 0x5402 mgslpc_info drivers/char/pcmcia/synclink_cs.c
|
||||
TTY_LDISC_MAGIC 0x5403 tty_ldisc include/linux/tty_ldisc.h
|
||||
USB_SERIAL_MAGIC 0x6702 usb_serial drivers/usb/serial/usb-serial.h
|
||||
FULL_DUPLEX_MAGIC 0x6969 drivers/net/tulip/de2104x.c
|
||||
FULL_DUPLEX_MAGIC 0x6969 drivers/net/ethernet/dec/tulip/de2104x.c
|
||||
USB_BLUETOOTH_MAGIC 0x6d02 usb_bluetooth drivers/usb/class/bluetty.c
|
||||
RFCOMM_TTY_MAGIC 0x6d02 net/bluetooth/rfcomm/tty.c
|
||||
USB_SERIAL_PORT_MAGIC 0x7301 usb_serial_port drivers/usb/serial/usb-serial.h
|
||||
|
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* slcan.c - serial line CAN interface driver (using tty line discipline)
|
||||
*
|
||||
* This file is derived from linux/drivers/net/slip.c
|
||||
* This file is derived from linux/drivers/net/slip/slip.c
|
||||
*
|
||||
* slip.c Authors : Laurence Culhane <loz@holmes.demon.co.uk>
|
||||
* Fred N. van Kempen <waltje@uwalt.nl.mugnet.org>
|
||||
|
@ -97,7 +97,7 @@ config VORTEX
|
||||
available from <http://www.tldp.org/docs.html#howto>. More
|
||||
specific information is in
|
||||
<file:Documentation/networking/vortex.txt> and in the comments at
|
||||
the beginning of <file:drivers/net/3c59x.c>.
|
||||
the beginning of <file:drivers/net/ethernet/3com/3c59x.c>.
|
||||
|
||||
To compile this support as a module, choose M here.
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* drivers/net/ax88796.c
|
||||
/* drivers/net/ethernet/8390/ax88796.c
|
||||
*
|
||||
* Copyright 2005,2007 Simtec Electronics
|
||||
* Ben Dooks <ben@simtec.co.uk>
|
||||
|
@ -192,7 +192,7 @@ static int get_prom(struct pcmcia_device *link)
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
int i, j;
|
||||
|
||||
/* This is based on drivers/net/ne.c */
|
||||
/* This is based on drivers/net/ethernet/8390/ne.c */
|
||||
struct {
|
||||
u_char value, offset;
|
||||
} program_seq[] = {
|
||||
|
@ -326,7 +326,7 @@ static hw_info_t *get_prom(struct pcmcia_device *link)
|
||||
u_char prom[32];
|
||||
int i, j;
|
||||
|
||||
/* This is lifted straight from drivers/net/ne.c */
|
||||
/* This is lifted straight from drivers/net/ethernet/8390/ne.c */
|
||||
struct {
|
||||
u_char value, offset;
|
||||
} program_seq[] = {
|
||||
|
@ -113,7 +113,7 @@ config DEPCA
|
||||
If you have a network (Ethernet) card of this type, say Y and read
|
||||
the Ethernet-HOWTO, available from
|
||||
<http://www.tldp.org/docs.html#howto> as well as
|
||||
<file:drivers/net/depca.c>.
|
||||
<file:drivers/net/ethernet/amd/depca.c>.
|
||||
|
||||
To compile this driver as a module, choose M here. The module
|
||||
will be called depca.
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* linux/drivers/net/am79c961.c
|
||||
* linux/drivers/net/ethernet/amd/am79c961a.c
|
||||
*
|
||||
* by Russell King <rmk@arm.linux.org.uk> 1995-2001.
|
||||
*
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* linux/drivers/net/arm/am79c961a.h
|
||||
* linux/drivers/net/ethernet/amd/am79c961a.h
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License version 2 as
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
drivers/net/tulip/21142.c
|
||||
drivers/net/ethernet/dec/tulip/21142.c
|
||||
|
||||
Copyright 2000,2001 The Linux Kernel Team
|
||||
Written/copyright 1994-2001 by Donald Becker.
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
drivers/net/tulip/eeprom.c
|
||||
drivers/net/ethernet/dec/tulip/eeprom.c
|
||||
|
||||
Copyright 2000,2001 The Linux Kernel Team
|
||||
Written/copyright 1994-2001 by Donald Becker.
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
drivers/net/tulip/interrupt.c
|
||||
drivers/net/ethernet/dec/tulip/interrupt.c
|
||||
|
||||
Copyright 2000,2001 The Linux Kernel Team
|
||||
Written/copyright 1994-2001 by Donald Becker.
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
drivers/net/tulip/media.c
|
||||
drivers/net/ethernet/dec/tulip/media.c
|
||||
|
||||
Copyright 2000,2001 The Linux Kernel Team
|
||||
Written/copyright 1994-2001 by Donald Becker.
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
drivers/net/tulip/pnic.c
|
||||
drivers/net/ethernet/dec/tulip/pnic.c
|
||||
|
||||
Copyright 2000,2001 The Linux Kernel Team
|
||||
Written/copyright 1994-2001 by Donald Becker.
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
drivers/net/tulip/pnic2.c
|
||||
drivers/net/ethernet/dec/tulip/pnic2.c
|
||||
|
||||
Copyright 2000,2001 The Linux Kernel Team
|
||||
Written/copyright 1994-2001 by Donald Becker.
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
drivers/net/tulip/timer.c
|
||||
drivers/net/ethernet/dec/tulip/timer.c
|
||||
|
||||
Copyright 2000,2001 The Linux Kernel Team
|
||||
Written/copyright 1994-2001 by Donald Becker.
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
drivers/net/tulip/tulip.h
|
||||
drivers/net/ethernet/dec/tulip/tulip.h
|
||||
|
||||
Copyright 2000,2001 The Linux Kernel Team
|
||||
Written/copyright 1994-2001 by Donald Becker.
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* linux/drivers/net/ethoc.c
|
||||
* linux/drivers/net/ethernet/ethoc.c
|
||||
*
|
||||
* Copyright (C) 2007-2008 Avionic Design Development GmbH
|
||||
* Copyright (C) 2008-2009 Avionic Design GmbH
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* drivers/drivers/net/fec_mpc52xx/fec.h
|
||||
* drivers/net/ethernet/freescale/fec_mpc52xx.h
|
||||
*
|
||||
* Driver for the MPC5200 Fast Ethernet Controller
|
||||
*
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* drivers/net/gianfar.c
|
||||
* drivers/net/ethernet/freescale/gianfar.c
|
||||
*
|
||||
* Gianfar Ethernet Driver
|
||||
* This driver is designed for the non-CPM ethernet controllers
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* drivers/net/gianfar.h
|
||||
* drivers/net/ethernet/freescale/gianfar.h
|
||||
*
|
||||
* Gianfar Ethernet Driver
|
||||
* Driver for FEC on MPC8540 and TSEC on MPC8540/MPC8560
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* drivers/net/gianfar_ethtool.c
|
||||
* drivers/net/ethernet/freescale/gianfar_ethtool.c
|
||||
*
|
||||
* Gianfar Ethernet Driver
|
||||
* Ethtool support for Gianfar Enet
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* drivers/net/gianfar_sysfs.c
|
||||
* drivers/net/ethernet/freescale/gianfar_sysfs.c
|
||||
*
|
||||
* Gianfar Ethernet Driver
|
||||
* This driver is designed for the non-CPM ethernet controllers
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* linux/drivers/net/ehea/ehea.h
|
||||
* linux/drivers/net/ethernet/ibm/ehea/ehea.h
|
||||
*
|
||||
* eHEA ethernet device driver for IBM eServer System p
|
||||
*
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* linux/drivers/net/ehea/ehea_ethtool.c
|
||||
* linux/drivers/net/ethernet/ibm/ehea/ehea_ethtool.c
|
||||
*
|
||||
* eHEA ethernet device driver for IBM eServer System p
|
||||
*
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* linux/drivers/net/ehea/ehea_hw.h
|
||||
* linux/drivers/net/ethernet/ibm/ehea/ehea_hw.h
|
||||
*
|
||||
* eHEA ethernet device driver for IBM eServer System p
|
||||
*
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* linux/drivers/net/ehea/ehea_main.c
|
||||
* linux/drivers/net/ethernet/ibm/ehea/ehea_main.c
|
||||
*
|
||||
* eHEA ethernet device driver for IBM eServer System p
|
||||
*
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* linux/drivers/net/ehea/ehea_phyp.c
|
||||
* linux/drivers/net/ethernet/ibm/ehea/ehea_phyp.c
|
||||
*
|
||||
* eHEA ethernet device driver for IBM eServer System p
|
||||
*
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* linux/drivers/net/ehea/ehea_phyp.h
|
||||
* linux/drivers/net/ethernet/ibm/ehea/ehea_phyp.h
|
||||
*
|
||||
* eHEA ethernet device driver for IBM eServer System p
|
||||
*
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* linux/drivers/net/ehea/ehea_qmr.c
|
||||
* linux/drivers/net/ethernet/ibm/ehea/ehea_qmr.c
|
||||
*
|
||||
* eHEA ethernet device driver for IBM eServer System p
|
||||
*
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* linux/drivers/net/ehea/ehea_qmr.h
|
||||
* linux/drivers/net/ethernet/ibm/ehea/ehea_qmr.h
|
||||
*
|
||||
* eHEA ethernet device driver for IBM eServer System p
|
||||
*
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* drivers/net/ibm_newemac/core.c
|
||||
* drivers/net/ethernet/ibm/emac/core.c
|
||||
*
|
||||
* Driver for PowerPC 4xx on-chip ethernet controller.
|
||||
*
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* drivers/net/ibm_newemac/core.h
|
||||
* drivers/net/ethernet/ibm/emac/core.h
|
||||
*
|
||||
* Driver for PowerPC 4xx on-chip ethernet controller.
|
||||
*
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* drivers/net/ibm_newemac/debug.c
|
||||
* drivers/net/ethernet/ibm/emac/debug.c
|
||||
*
|
||||
* Driver for PowerPC 4xx on-chip ethernet controller, debug print routines.
|
||||
*
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* drivers/net/ibm_newemac/debug.h
|
||||
* drivers/net/ethernet/ibm/emac/debug.h
|
||||
*
|
||||
* Driver for PowerPC 4xx on-chip ethernet controller, debug print routines.
|
||||
*
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* drivers/net/ibm_newemac/emac.h
|
||||
* drivers/net/ethernet/ibm/emac/emac.h
|
||||
*
|
||||
* Register definitions for PowerPC 4xx on-chip ethernet contoller
|
||||
*
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* drivers/net/ibm_newemac/mal.c
|
||||
* drivers/net/ethernet/ibm/emac/mal.c
|
||||
*
|
||||
* Memory Access Layer (MAL) support
|
||||
*
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* drivers/net/ibm_newemac/mal.h
|
||||
* drivers/net/ethernet/ibm/emac/mal.h
|
||||
*
|
||||
* Memory Access Layer (MAL) support
|
||||
*
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* drivers/net/ibm_newemac/phy.c
|
||||
* drivers/net/ethernet/ibm/emac/phy.c
|
||||
*
|
||||
* Driver for PowerPC 4xx on-chip ethernet controller, PHY support.
|
||||
* Borrowed from sungem_phy.c, though I only kept the generic MII
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* drivers/net/ibm_newemac/phy.h
|
||||
* drivers/net/ethernet/ibm/emac/phy.h
|
||||
*
|
||||
* Driver for PowerPC 4xx on-chip ethernet controller, PHY support
|
||||
*
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* drivers/net/ibm_newemac/rgmii.c
|
||||
* drivers/net/ethernet/ibm/emac/rgmii.c
|
||||
*
|
||||
* Driver for PowerPC 4xx on-chip ethernet controller, RGMII bridge support.
|
||||
*
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* drivers/net/ibm_newemac/rgmii.h
|
||||
* drivers/net/ethernet/ibm/emac/rgmii.h
|
||||
*
|
||||
* Driver for PowerPC 4xx on-chip ethernet controller, RGMII bridge support.
|
||||
*
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* drivers/net/ibm_newemac/tah.c
|
||||
* drivers/net/ethernet/ibm/emac/tah.c
|
||||
*
|
||||
* Driver for PowerPC 4xx on-chip ethernet controller, TAH support.
|
||||
*
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* drivers/net/ibm_newemac/tah.h
|
||||
* drivers/net/ethernet/ibm/emac/tah.h
|
||||
*
|
||||
* Driver for PowerPC 4xx on-chip ethernet controller, TAH support.
|
||||
*
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* drivers/net/ibm_newemac/zmii.c
|
||||
* drivers/net/ethernet/ibm/emac/zmii.c
|
||||
*
|
||||
* Driver for PowerPC 4xx on-chip ethernet controller, ZMII bridge support.
|
||||
*
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* drivers/net/ibm_newemac/zmii.h
|
||||
* drivers/net/ethernet/ibm/emac/zmii.h
|
||||
*
|
||||
* Driver for PowerPC 4xx on-chip ethernet controller, ZMII bridge support.
|
||||
*
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* drivers/net/ks8851.c
|
||||
/* drivers/net/ethernet/micrel/ks8851.c
|
||||
*
|
||||
* Copyright 2009 Simtec Electronics
|
||||
* http://www.simtec.co.uk/
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* drivers/net/ks8851.h
|
||||
/* drivers/net/ethernet/micrel/ks8851.h
|
||||
*
|
||||
* Copyright 2009 Simtec Electronics
|
||||
* Ben Dooks <ben@simtec.co.uk>
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* drivers/net/ks8851_mll.c
|
||||
* drivers/net/ethernet/micrel/ks8851_mll.c
|
||||
* Copyright (c) 2009 Micrel Inc.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* drivers/net/ksx884x.c - Micrel KSZ8841/2 PCI Ethernet driver
|
||||
* drivers/net/ethernet/micrel/ksx884x.c - Micrel KSZ8841/2 PCI Ethernet driver
|
||||
*
|
||||
* Copyright (c) 2009-2010 Micrel, Inc.
|
||||
* Tristram Ha <Tristram.Ha@micrel.com>
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* drivers/net/netx-eth.c
|
||||
* drivers/net/ethernet/netx-eth.c
|
||||
*
|
||||
* Copyright (c) 2005 Sascha Hauer <s.hauer@pengutronix.de>, Pengutronix
|
||||
*
|
||||
|
@ -24,11 +24,11 @@ config ATP
|
||||
select CRC32
|
||||
---help---
|
||||
This is a network (Ethernet) device which attaches to your parallel
|
||||
port. Read <file:drivers/net/atp.c> as well as the Ethernet-HOWTO,
|
||||
available from <http://www.tldp.org/docs.html#howto>, if you
|
||||
want to use this. If you intend to use this driver, you should have
|
||||
said N to the "Parallel printer support", because the two drivers
|
||||
don't like each other.
|
||||
port. Read <file:drivers/net/ethernet/realtek/atp.c> as well as the
|
||||
Ethernet-HOWTO, available from <http://www.tldp.org/docs.html#howto>,
|
||||
if you want to use this. If you intend to use this driver, you
|
||||
should have said N to the "Parallel printer support", because the two
|
||||
drivers don't like each other.
|
||||
|
||||
To compile this driver as a module, choose M here: the module
|
||||
will be called atp.
|
||||
|
Loading…
Reference in New Issue
Block a user