31 lines
971 B
C
31 lines
971 B
C
|
/*
|
||
|
** =============================================================================
|
||
|
** Copyright (c) 2016 Texas Instruments Inc.
|
||
|
**
|
||
|
** This program is free software; you can redistribute it and/or modify it under
|
||
|
** the terms of the GNU General Public License as published by the Free Software
|
||
|
** Foundation; version 2.
|
||
|
**
|
||
|
** This program is distributed in the hope that it will be useful, but WITHOUT
|
||
|
** ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||
|
** FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
||
|
**
|
||
|
** File:
|
||
|
** tas2557-codec.h
|
||
|
**
|
||
|
** Description:
|
||
|
** header file for tas2557-codec.c
|
||
|
**
|
||
|
** =============================================================================
|
||
|
*/
|
||
|
|
||
|
#ifndef _TAS2557_CODEC_H
|
||
|
#define _TAS2557_CODEC_H
|
||
|
|
||
|
#include "tas2557.h"
|
||
|
|
||
|
int tas2557_register_codec(struct tas2557_priv *pTAS2557);
|
||
|
int tas2557_deregister_codec(struct tas2557_priv *pTAS2557);
|
||
|
|
||
|
#endif /* _TAS2557_CODEC_H */
|