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