cregit-Linux how code gets into the kernel

Release 4.7 drivers/mtd/nand/bcm47xxnflash/main.c

/*
 * BCM47XX NAND flash driver
 *
 * Copyright (C) 2012 Rafał Miłecki <zajec5@gmail.com>
 *
 * 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
 * published by the Free Software Foundation.
 *
 */

#include "bcm47xxnflash.h"

#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/slab.h>
#include <linux/platform_device.h>
#include <linux/bcma/bcma.h>

MODULE_DESCRIPTION("NAND flash driver for BCMA bus");
MODULE_LICENSE("GPL");
MODULE_AUTHOR("Rafał Miłecki");


static const char *probes[] = { "bcm47xxpart", NULL };


static int bcm47xxnflash_probe(struct platform_device *pdev) { struct bcma_nflash *nflash = dev_get_platdata(&pdev->dev); struct bcm47xxnflash *b47n; struct mtd_info *mtd; int err = 0; b47n = devm_kzalloc(&pdev->dev, sizeof(*b47n), GFP_KERNEL); if (!b47n) return -ENOMEM; nand_set_controller_data(&b47n->nand_chip, b47n); mtd = nand_to_mtd(&b47n->nand_chip); mtd->dev.parent = &pdev->dev; b47n->cc = container_of(nflash, struct bcma_drv_cc, nflash); if (b47n->cc->core->bus->chipinfo.id == BCMA_CHIP_ID_BCM4706) { err = bcm47xxnflash_ops_bcm4706_init(b47n); } else { pr_err("Device not supported\n"); err = -ENOTSUPP; } if (err) { pr_err("Initialization failed: %d\n", err); return err; } platform_set_drvdata(pdev, b47n); err = mtd_device_parse_register(mtd, probes, NULL, NULL, 0); if (err) { pr_err("Failed to register MTD device: %d\n", err); return err; } return 0; }

Contributors

PersonTokensPropCommitsCommitProp
rafal mileckirafal milecki15977.18%228.57%
boris brezillonboris brezillon199.22%228.57%
sachin kamatsachin kamat146.80%114.29%
frans klaverfrans klaver73.40%114.29%
brian norrisbrian norris73.40%114.29%
Total206100.00%7100.00%


static int bcm47xxnflash_remove(struct platform_device *pdev) { struct bcm47xxnflash *nflash = platform_get_drvdata(pdev); nand_release(nand_to_mtd(&nflash->nand_chip)); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
rafal mileckirafal milecki2777.14%133.33%
brian norrisbrian norris411.43%133.33%
boris brezillonboris brezillon411.43%133.33%
Total35100.00%3100.00%

static struct platform_driver bcm47xxnflash_driver = { .probe = bcm47xxnflash_probe, .remove = bcm47xxnflash_remove, .driver = { .name = "bcma_nflash", }, }; module_platform_driver(bcm47xxnflash_driver);

Overall Contributors

PersonTokensPropCommitsCommitProp
rafal mileckirafal milecki25880.62%330.00%
boris brezillonboris brezillon237.19%220.00%
sachin kamatsachin kamat165.00%220.00%
brian norrisbrian norris113.44%110.00%
frans klaverfrans klaver72.19%110.00%
hauke mehrtenshauke mehrtens51.56%110.00%
Total320100.00%10100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
{% endraw %}