brintos

brintos / linux-shallow public Read only

0
0
Text · 313 B · e3b24fa Raw
18 lines · c
1/* SPDX-License-Identifier: MIT */2/*3 * Copyright © 2020 Intel Corporation4 */5 6#ifndef SELFTEST_LIBRAPL_H7#define SELFTEST_LIBRAPL_H8 9#include <linux/types.h>10 11struct drm_i915_private;12 13bool librapl_supported(const struct drm_i915_private *i915);14 15u64 librapl_energy_uJ(void);16 17#endif /* SELFTEST_LIBRAPL_H */18