Commit 43a0a45a authored by Boris Brezillon's avatar Boris Brezillon

mtd: nand: Get rid of comments giving the file path inside the file itself

Some files add a comment giving the path of the file inside the Linux
tree, which is pretty useless since the reader had to find the file to
open it.

Getting rid of these comments will also allow us to easily move these
files around when needed.
Signed-off-by: default avatarBoris Brezillon <boris.brezillon@bootlin.com>
parent fb3bff5b
# SPDX-License-Identifier: GPL-2.0 # SPDX-License-Identifier: GPL-2.0
#
# linux/drivers/nand/Makefile
#
obj-$(CONFIG_MTD_NAND) += nand.o obj-$(CONFIG_MTD_NAND) += nand.o
obj-$(CONFIG_MTD_NAND_ECC) += nand_ecc.o obj-$(CONFIG_MTD_NAND_ECC) += nand_ecc.o
......
/* /*
* drivers/mtd/nand/ams-delta.c
*
* Copyright (C) 2006 Jonathan McDowell <noodles@earth.li> * Copyright (C) 2006 Jonathan McDowell <noodles@earth.li>
* *
* Derived from drivers/mtd/toto.c * Derived from drivers/mtd/toto.c
......
/* /*
* drivers/mtd/nand/au1550nd.c
*
* Copyright (C) 2004 Embedded Edge, LLC * Copyright (C) 2004 Embedded Edge, LLC
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
......
/* linux/drivers/mtd/nand/bf5xx_nand.c /*
*
* Copyright 2006-2008 Analog Devices Inc. * Copyright 2006-2008 Analog Devices Inc.
* http://blackfin.uclinux.org/ * http://blackfin.uclinux.org/
* Bryan Wu <bryan.wu@analog.com> * Bryan Wu <bryan.wu@analog.com>
......
/* /*
* linux/drivers/mtd/nand/cmx270-nand.c
*
* Copyright (C) 2006 Compulab, Ltd. * Copyright (C) 2006 Compulab, Ltd.
* Mike Rapoport <mike@compulab.co.il> * Mike Rapoport <mike@compulab.co.il>
* *
......
/* /*
* drivers/mtd/nand/cs553x_nand.c
*
* (C) 2005, 2006 Red Hat Inc. * (C) 2005, 2006 Red Hat Inc.
* *
* Author: David Woodhouse <dwmw2@infradead.org> * Author: David Woodhouse <dwmw2@infradead.org>
......
/* /*
* drivers/mtd/nand/diskonchip.c
*
* (C) 2003 Red Hat, Inc. * (C) 2003 Red Hat, Inc.
* (C) 2004 Dan Brown <dan_brown@ieee.org> * (C) 2004 Dan Brown <dan_brown@ieee.org>
* (C) 2004 Kalev Lember <kalev@smartlink.ee> * (C) 2004 Kalev Lember <kalev@smartlink.ee>
......
/* /*
* drivers/mtd/nand/fsmc_nand.c
*
* ST Microelectronics * ST Microelectronics
* Flexible Static Memory Controller (FSMC) * Flexible Static Memory Controller (FSMC)
* Driver for NAND portions * Driver for NAND portions
......
/* /*
* drivers/mtd/nand/gpio.c
*
* Updated, and converted to generic GPIO based driver by Russell King. * Updated, and converted to generic GPIO based driver by Russell King.
* *
* Written by Ben Dooks <ben@simtec.co.uk> * Written by Ben Dooks <ben@simtec.co.uk>
......
...@@ -2,8 +2,6 @@ ...@@ -2,8 +2,6 @@
* This file contains an ECC algorithm that detects and corrects 1 bit * This file contains an ECC algorithm that detects and corrects 1 bit
* errors in a 256 byte block of data. * errors in a 256 byte block of data.
* *
* drivers/mtd/nand/nand_ecc.c
*
* Copyright © 2008 Koninklijke Philips Electronics NV. * Copyright © 2008 Koninklijke Philips Electronics NV.
* Author: Frans Meulenbroeks * Author: Frans Meulenbroeks
* *
......
/* /*
* drivers/mtd/nand/orion_nand.c
*
* NAND support for Marvell Orion SoC platforms * NAND support for Marvell Orion SoC platforms
* *
* Tzachi Perelstein <tzachi@marvell.com> * Tzachi Perelstein <tzachi@marvell.com>
......
/* /*
* drivers/mtd/nand/pxa3xx_nand.c
*
* Copyright © 2005 Intel Corporation * Copyright © 2005 Intel Corporation
* Copyright © 2006 Marvell International Ltd. * Copyright © 2006 Marvell International Ltd.
* *
......
/* linux/drivers/mtd/nand/s3c2410.c /*
*
* Copyright © 2004-2008 Simtec Electronics * Copyright © 2004-2008 Simtec Electronics
* http://armlinux.simtec.co.uk/ * http://armlinux.simtec.co.uk/
* Ben Dooks <ben@simtec.co.uk> * Ben Dooks <ben@simtec.co.uk>
......
/* /*
* drivers/mtd/nand/sharpsl.c
*
* Copyright (C) 2004 Richard Purdie * Copyright (C) 2004 Richard Purdie
* Copyright (C) 2008 Dmitry Baryshkov * Copyright (C) 2008 Dmitry Baryshkov
* *
......
/* /*
* drivers/mtd/nand/socrates_nand.c
*
* Copyright © 2008 Ilya Yanok, Emcraft Systems * Copyright © 2008 Ilya Yanok, Emcraft Systems
* *
* *
......
/* /*
* linux/include/linux/mtd/bbm.h
*
* NAND family Bad Block Management (BBM) header file * NAND family Bad Block Management (BBM) header file
* - Bad Block Table (BBT) implementation * - Bad Block Table (BBT) implementation
* *
......
/* /*
* drivers/mtd/nand_ecc.h
*
* Copyright (C) 2000-2010 Steven J. Hill <sjhill@realitydiluted.com> * Copyright (C) 2000-2010 Steven J. Hill <sjhill@realitydiluted.com>
* David Woodhouse <dwmw2@infradead.org> * David Woodhouse <dwmw2@infradead.org>
* Thomas Gleixner <tglx@linutronix.de> * Thomas Gleixner <tglx@linutronix.de>
......
/* /*
* linux/include/linux/mtd/ndfc.h
*
* Copyright (c) 2006 Thomas Gleixner <tglx@linutronix.de> * Copyright (c) 2006 Thomas Gleixner <tglx@linutronix.de>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment