Lines Matching defs:limits
475 struct scmi_perf_set_limits *limits;
478 sizeof(*limits), 0, &t);
482 limits = t->tx.buf;
483 limits->domain = cpu_to_le32(domain);
484 limits->max_level = cpu_to_le32(max_perf);
485 limits->min_level = cpu_to_le32(min_perf);
552 struct scmi_perf_get_limits *limits;
563 limits = t->rx.buf;
565 *max_perf = le32_to_cpu(limits->max_level);
566 *min_perf = le32_to_cpu(limits->min_level);