linux/drivers/mtd/nand/raw/bcm47xxnflash/main.c

// SPDX-License-Identifier: GPL-2.0-only
/*
 * BCM47XX NAND flash driver
 *
 * Copyright (C) 2012 Rafał Miłecki <[email protected]>
 */

#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();
MODULE_LICENSE();
MODULE_AUTHOR();

static const char *probes[] =;

static int bcm47xxnflash_probe(struct platform_device *pdev)
{}

static void bcm47xxnflash_remove(struct platform_device *pdev)
{}

static struct platform_driver bcm47xxnflash_driver =;

module_platform_driver();