Lines Matching refs:ops
19 struct cpu_ops *ops = cpu_get_ops(dev); in cpu_get_desc() local
21 if (!ops->get_desc) in cpu_get_desc()
24 return ops->get_desc(dev, buf, size); in cpu_get_desc()
29 struct cpu_ops *ops = cpu_get_ops(dev); in cpu_get_info() local
31 if (!ops->get_info) in cpu_get_info()
34 return ops->get_info(dev, info); in cpu_get_info()
39 struct cpu_ops *ops = cpu_get_ops(dev); in cpu_get_count() local
41 if (!ops->get_count) in cpu_get_count()
44 return ops->get_count(dev); in cpu_get_count()
49 struct cpu_ops *ops = cpu_get_ops(dev); in cpu_get_vendor() local
51 if (!ops->get_vendor) in cpu_get_vendor()
54 return ops->get_vendor(dev, buf, size); in cpu_get_vendor()