cregit-Linux how code gets into the kernel

Release 4.7 drivers/mtd/chips/map_absent.c

/*
 * Common code to handle absent "placeholder" devices
 * Copyright 2001 Resilience Corporation <ebrower@resilience.com>
 *
 * This map driver is used to allocate "placeholder" MTD
 * devices on systems that have socketed/removable media.
 * Use of this driver as a fallback preserves the expected
 * registration of MTD device nodes regardless of probe outcome.
 * A usage example is as follows:
 *
 *              my_dev[i] = do_map_probe("cfi", &my_map[i]);
 *              if(NULL == my_dev[i]) {
 *                      my_dev[i] = do_map_probe("map_absent", &my_map[i]);
 *              }
 *
 * Any device 'probed' with this driver will return -ENODEV
 * upon open.
 */

#include <linux/module.h>
#include <linux/types.h>
#include <linux/kernel.h>
#include <linux/errno.h>
#include <linux/slab.h>
#include <linux/init.h>
#include <linux/mtd/mtd.h>
#include <linux/mtd/map.h>

static int map_absent_read (struct mtd_info *, loff_t, size_t, size_t *, u_char *);
static int map_absent_write (struct mtd_info *, loff_t, size_t, size_t *, const u_char *);
static int map_absent_erase (struct mtd_info *, struct erase_info *);
static void map_absent_sync (struct mtd_info *);
static struct mtd_info *map_absent_probe(struct map_info *map);
static void map_absent_destroy (struct mtd_info *);



static struct mtd_chip_driver map_absent_chipdrv = {
	.probe		= map_absent_probe,
	.destroy	= map_absent_destroy,
	.name		= "map_absent",
	.module		= THIS_MODULE
};


static struct mtd_info *map_absent_probe(struct map_info *map) { struct mtd_info *mtd; mtd = kzalloc(sizeof(*mtd), GFP_KERNEL); if (!mtd) { return NULL; } map->fldrv = &map_absent_chipdrv; mtd->priv = map; mtd->name = map->name; mtd->type = MTD_ABSENT; mtd->size = map->size; mtd->_erase = map_absent_erase; mtd->_read = map_absent_read; mtd->_write = map_absent_write; mtd->_sync = map_absent_sync; mtd->flags = 0; mtd->erasesize = PAGE_SIZE; mtd->writesize = 1; __module_get(THIS_MODULE); return mtd; }

Contributors

PersonTokensPropCommitsCommitProp
linus torvaldslinus torvalds11188.10%120.00%
artem bityutskiyartem bityutskiy107.94%240.00%
david woodhousedavid woodhouse43.17%120.00%
burman yanburman yan10.79%120.00%
Total126100.00%5100.00%


static int map_absent_read(struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, u_char *buf) { return -ENODEV; }

Contributors

PersonTokensPropCommitsCommitProp
linus torvaldslinus torvalds29100.00%1100.00%
Total29100.00%1100.00%


static int map_absent_write(struct mtd_info *mtd, loff_t to, size_t len, size_t *retlen, const u_char *buf) { return -ENODEV; }

Contributors

PersonTokensPropCommitsCommitProp
linus torvaldslinus torvalds30100.00%1100.00%
Total30100.00%1100.00%


static int map_absent_erase(struct mtd_info *mtd, struct erase_info *instr) { return -ENODEV; }

Contributors

PersonTokensPropCommitsCommitProp
linus torvaldslinus torvalds20100.00%1100.00%
Total20100.00%1100.00%


static void map_absent_sync(struct mtd_info *mtd) { /* nop */ }

Contributors

PersonTokensPropCommitsCommitProp
linus torvaldslinus torvalds12100.00%1100.00%
Total12100.00%1100.00%


static void map_absent_destroy(struct mtd_info *mtd) { /* nop */ }

Contributors

PersonTokensPropCommitsCommitProp
linus torvaldslinus torvalds12100.00%1100.00%
Total12100.00%1100.00%


static int __init map_absent_init(void) { register_mtd_chip_driver(&map_absent_chipdrv); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
linus torvaldslinus torvalds1794.44%150.00%
david woodhousedavid woodhouse15.56%150.00%
Total18100.00%2100.00%


static void __exit map_absent_exit(void) { unregister_mtd_chip_driver(&map_absent_chipdrv); }

Contributors

PersonTokensPropCommitsCommitProp
linus torvaldslinus torvalds15100.00%1100.00%
Total15100.00%1100.00%

module_init(map_absent_init); module_exit(map_absent_exit); MODULE_LICENSE("GPL"); MODULE_AUTHOR("Resilience Corporation - Eric Brower <ebrower@resilience.com>"); MODULE_DESCRIPTION("Placeholder MTD chip driver for 'absent' chips");

Overall Contributors

PersonTokensPropCommitsCommitProp
linus torvaldslinus torvalds39092.64%112.50%
david woodhousedavid woodhouse112.61%225.00%
artem bityutskiyartem bityutskiy102.38%225.00%
art haasart haas81.90%112.50%
burman yanburman yan10.24%112.50%
adrian bunkadrian bunk10.24%112.50%
Total421100.00%8100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
{% endraw %}