/*1* Driver for the Atmel Audio Bitstream DAC (ABDAC)2*3* Copyright (C) 2009 Atmel Corporation4*5* This program is free software; you can redistribute it and/or modify it6* under the terms of the GNU General Public License version 2 as published7* by the Free Software Foundation.8*/9#ifndef __INCLUDE_SOUND_ATMEL_ABDAC_H10#define __INCLUDE_SOUND_ATMEL_ABDAC_H1112#include <linux/dw_dmac.h>1314/**15* struct atmel_abdac_pdata - board specific ABDAC configuration16* @dws: DMA slave interface to use for sound playback.17*/18struct atmel_abdac_pdata {19struct dw_dma_slave dws;20};2122#endif /* __INCLUDE_SOUND_ATMEL_ABDAC_H */232425