2 * Copyright © 2015 Broadcom Corporation
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
14 #include <linux/device.h>
15 #include <linux/module.h>
16 #include <linux/platform_device.h>
20 static const struct of_device_id brcmstb_nand_of_match
[] = {
21 { .compatible
= "brcm,brcmnand" },
24 MODULE_DEVICE_TABLE(of
, brcmstb_nand_of_match
);
26 static int brcmstb_nand_probe(struct platform_device
*pdev
)
28 return brcmnand_probe(pdev
, NULL
);
31 static struct platform_driver brcmstb_nand_driver
= {
32 .probe
= brcmstb_nand_probe
,
33 .remove
= brcmnand_remove
,
35 .name
= "brcmstb_nand",
36 .pm
= &brcmnand_pm_ops
,
37 .of_match_table
= brcmstb_nand_of_match
,
40 module_platform_driver(brcmstb_nand_driver
);
42 MODULE_LICENSE("GPL v2");
43 MODULE_AUTHOR("Brian Norris");
44 MODULE_DESCRIPTION("NAND driver for Broadcom STB chips");