1 /* 2 * Copyright © 2015 Broadcom Corporation 3 * 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. 7 * 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. 12 */ 13 14 #include <linux/device.h> 15 #include <linux/module.h> 16 #include <linux/mod_devicetable.h> 17 #include <linux/platform_device.h> 18 19 #include "brcmnand.h" 20 21 static const struct of_device_id brcmstb_nand_of_match[] = { 22 { .compatible = "brcm,brcmnand" }, 23 {}, 24 }; 25 MODULE_DEVICE_TABLE(of, brcmstb_nand_of_match); 26 27 static int brcmstb_nand_probe(struct platform_device *pdev) 28 { 29 return brcmnand_probe(pdev, NULL); 30 } 31 32 static struct platform_driver brcmstb_nand_driver = { 33 .probe = brcmstb_nand_probe, 34 .remove = brcmnand_remove, 35 .driver = { 36 .name = "brcmstb_nand", 37 .pm = &brcmnand_pm_ops, 38 .of_match_table = brcmstb_nand_of_match, 39 } 40 }; 41 module_platform_driver(brcmstb_nand_driver); 42 43 MODULE_LICENSE("GPL v2"); 44 MODULE_AUTHOR("Brian Norris"); 45 MODULE_DESCRIPTION("NAND driver for Broadcom STB chips"); 46