Linux Audio

Check our new training course

Embedded Linux Audio

Check our new training course
with Creative Commons CC-BY-SA
lecture materials

Bootlin logo

Elixir Cross Referencer

Loading...
/* SPDX-License-Identifier: MIT */
/*
 * Copyright © 2022 Intel Corporation
 */

#ifndef _INTEL_HWCONFIG_H_
#define _INTEL_HWCONFIG_H_

#include <linux/types.h>

struct intel_gt;

struct intel_hwconfig {
	u32 size;
	void *ptr;
};

int intel_gt_init_hwconfig(struct intel_gt *gt);
void intel_gt_fini_hwconfig(struct intel_gt *gt);

#endif /* _INTEL_HWCONFIG_H_ */