You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07: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:
committed by
David S. Miller
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
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user