Lines Matching defs:limits
361 struct scmi_perf_set_limits *limits;
364 sizeof(*limits), 0, &t);
368 limits = t->tx.buf;
369 limits->domain = cpu_to_le32(domain);
370 limits->max_level = cpu_to_le32(max_perf);
371 limits->min_level = cpu_to_le32(min_perf);
400 struct scmi_perf_get_limits *limits;
411 limits = t->rx.buf;
413 *max_perf = le32_to_cpu(limits->max_level);
414 *min_perf = le32_to_cpu(limits->min_level);