aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/fpga/fpga-region.c
diff options
context:
space:
mode:
authorAlan Tull <atull@kernel.org>2017-11-15 15:20:24 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2017-11-28 10:30:38 -0500
commit503d4b7a446b3838785fa7f21e339941a5d1c2d5 (patch)
tree7647ec3740241624156eaa4f22b7e4b90ab39ecf /drivers/fpga/fpga-region.c
parent52a3a7ccce07e73323fc1bae9eb0b0b63375391c (diff)
fpga: region: add fpga_region_class_find
Add a function for searching the fpga-region class. This will be useful when device tree code is no longer in the same file that declares the fpga-region class. Another step in separating common FPGA region code from device tree support. Signed-off-by: Alan Tull <atull@kernel.org> Acked-by: Moritz Fischer <mdf@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/fpga/fpga-region.c')
-rw-r--r--drivers/fpga/fpga-region.c23
1 files changed, 15 insertions, 8 deletions
diff --git a/drivers/fpga/fpga-region.c b/drivers/fpga/fpga-region.c
index 76db81de2cc0..5c0869576cd1 100644
--- a/drivers/fpga/fpga-region.c
+++ b/drivers/fpga/fpga-region.c
@@ -30,6 +30,20 @@
30static DEFINE_IDA(fpga_region_ida); 30static DEFINE_IDA(fpga_region_ida);
31static struct class *fpga_region_class; 31static struct class *fpga_region_class;
32 32
33struct fpga_region *fpga_region_class_find(
34 struct device *start, const void *data,
35 int (*match)(struct device *, const void *))
36{
37 struct device *dev;
38
39 dev = class_find_device(fpga_region_class, start, data, match);
40 if (!dev)
41 return NULL;
42
43 return to_fpga_region(dev);
44}
45EXPORT_SYMBOL_GPL(fpga_region_class_find);
46
33static const struct of_device_id fpga_region_of_match[] = { 47static const struct of_device_id fpga_region_of_match[] = {
34 { .compatible = "fpga-region", }, 48 { .compatible = "fpga-region", },
35 {}, 49 {},
@@ -51,14 +65,7 @@ static int fpga_region_of_node_match(struct device *dev, const void *data)
51 */ 65 */
52static struct fpga_region *of_fpga_region_find(struct device_node *np) 66static struct fpga_region *of_fpga_region_find(struct device_node *np)
53{ 67{
54 struct device *dev; 68 return fpga_region_class_find(NULL, np, fpga_region_of_node_match);
55
56 dev = class_find_device(fpga_region_class, NULL, np,
57 fpga_region_of_node_match);
58 if (!dev)
59 return NULL;
60
61 return to_fpga_region(dev);
62} 69}
63 70
64/** 71/**