20 lines
382 B
C
20 lines
382 B
C
|
/*
|
||
|
*
|
||
|
* This program is free software; you can redistribute it and/or modify
|
||
|
* it under the terms of the GNU General Public License version 2 as
|
||
|
* published by the Free Software Foundation.
|
||
|
*/
|
||
|
|
||
|
#ifndef _GSC3280_PCM_H
|
||
|
#define _GSC3280_PCM_H
|
||
|
|
||
|
#include <linux/dma-mapping.h>
|
||
|
|
||
|
|
||
|
struct gsc3280_pcm_config {
|
||
|
// struct gsc3280_dma_config dma_config;
|
||
|
phys_addr_t fifo_addr;
|
||
|
};
|
||
|
|
||
|
#endif
|