omap3530/beagle_drivers/wb/api/include/cyashalcb.h
author Mike Kinghan <mikek@symbian.org>
Mon, 22 Nov 2010 14:32:00 +0000
branchGCC_SURGE
changeset 121 ad7caa8e9a62
parent 23 117faf51deac
permissions -rw-r--r--
Deleting the bootstrap.flm extension workaround from omap3530/beagleboard/bld.inf b/omap3530/beagleboard/bld.inf for the time being. Bootstrap.flm isn't present in the buildtools GCC_SURGE branch yet and I suspect that bringing it in will break stuff.

/* Cypress West Bridge API header file (cyashalcb.h)
 ## ===========================
 ##
 ##  Copyright Cypress Semiconductor Corporation, 2006-2009,
 ##  All Rights Reserved
 ##  UNPUBLISHED, LICENSED SOFTWARE.
 ##
 ##  CONFIDENTIAL AND PROPRIETARY INFORMATION
 ##  WHICH IS THE PROPERTY OF CYPRESS.
 ##
 ##  Use of this file is governed
 ##  by the license agreement included in the file
 ##
 ##     <install>/license/license.txt
 ##
 ##  where <install> is the Cypress software
 ##  installation root directory path.
 ##
 ## ===========================
*/

#ifndef _INCLUDED_CYASHALCB_H_
#define _INCLUDED_CYASHALCB_H_

/* Summary
   This type defines a callback function type called when a DMA operation has completed.

   Description

   See Also
   * CyAsHalDmaRegisterCallback
   * CyAsHalDmaSetupWrite
   * CyAsHalDmaSetupRead
*/
typedef void (*CyAsHalDmaCompleteCallback)(
	CyAsHalDeviceTag tag,
	CyAsEndPointNumber_t ep, 
	uint32_t cnt,
	CyAsReturnStatus_t ret) ;

typedef CyAsHalDmaCompleteCallback CyAnHalDmaCompleteCallback;
#endif