mirror of
https://github.com/alsa-project/alsa-utils
synced 2024-11-13 03:25:42 +01:00
16 lines
358 B
C
16 lines
358 B
C
|
// SPDX-License-Identifier: BSD-3-Clause
|
||
|
//
|
||
|
// Copyright(c) 2021 Intel Corporation. All rights reserved.
|
||
|
//
|
||
|
// Author: Jaska Uimonen <jaska.uimonen@linux.intel.com>
|
||
|
|
||
|
#ifndef __SSP_DEBUG_H
|
||
|
#define __SSP_DEBUG_H
|
||
|
|
||
|
#include "ssp-internal.h"
|
||
|
|
||
|
void ssp_print_internal(struct intel_ssp_params *ssp);
|
||
|
void ssp_print_calculated(struct intel_ssp_params *ssp);
|
||
|
|
||
|
#endif
|