aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
Diffstat (limited to 'drivers')
-rw-r--r--drivers/gpio/gpio-74x164.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/gpio/gpio-74x164.c b/drivers/gpio/gpio-74x164.c
index ef8baacb650a..2e31bd35769a 100644
--- a/drivers/gpio/gpio-74x164.c
+++ b/drivers/gpio/gpio-74x164.c
@@ -148,10 +148,17 @@ static int __devexit gen_74x164_remove(struct spi_device *spi)
148 return ret; 148 return ret;
149} 149}
150 150
151static const struct of_device_id gen_74x164_dt_ids[] = {
152 { .compatible = "fairchild,74hc595" },
153 {},
154};
155MODULE_DEVICE_TABLE(of, gen_74x164_dt_ids);
156
151static struct spi_driver gen_74x164_driver = { 157static struct spi_driver gen_74x164_driver = {
152 .driver = { 158 .driver = {
153 .name = "74x164", 159 .name = "74x164",
154 .owner = THIS_MODULE, 160 .owner = THIS_MODULE,
161 .of_match_table = of_match_ptr(gen_74x164_dt_ids),
155 }, 162 },
156 .probe = gen_74x164_probe, 163 .probe = gen_74x164_probe,
157 .remove = __devexit_p(gen_74x164_remove), 164 .remove = __devexit_p(gen_74x164_remove),