• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // SPDX-License-Identifier: BSD-3-Clause
2 //
3 // Copyright(c) 2021 Intel Corporation. All rights reserved.
4 //
5 // Author: Seppo Ingalsuo <seppo.ingalsuo@linux.intel.com>
6 //         Jaska Uimonen <jaska.uimonen@linux.intel.com>
7 
8 #ifndef __DMIC_DEBUG_H
9 #define __DMIC_DEBUG_H
10 
11 #include "dmic-internal.h"
12 
13 void dmic_print_bytes_as_hex(uint8_t *src, size_t size);
14 void dmic_print_integers_as_hex(uint32_t *src, size_t size);
15 void dmic_print_internal(struct intel_dmic_params *dmic);
16 
17 #endif
18