brintos

brintos / linux-shallow public Read only

0
0
Text · 445 B · 6f0ab37 Raw
23 lines · c
1/* SPDX-License-Identifier: MIT */2/*3 * Copyright © 2022 Intel Corporation4 */5 6#ifndef _I915_ACTIVE_H_7#define _I915_ACTIVE_H_8 9#include "i915_active_types.h"10 11static inline void i915_active_init(struct i915_active *ref,12				    int (*active)(struct i915_active *ref),13				    void (*retire)(struct i915_active *ref),14				    unsigned long flags)15{16	(void) active;17	(void) retire;18}19 20#define i915_active_fini(active) do { } while (0)21 22#endif23