https://github.com/torvalds/linux
Raw File
Tip revision: 528dd46d0fc35c0176257a13a27d41e44fcc6cb3 authored by Linus Torvalds on 13 July 2024, 01:33:33 UTC
Merge tag 'net-6.10-rc8-2' of git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net
Tip revision: 528dd46
atari_stdma.h
/* SPDX-License-Identifier: GPL-2.0 */

#ifndef _atari_stdma_h
#define _atari_stdma_h


#include <linux/interrupt.h>


/***************************** Prototypes *****************************/

int stdma_try_lock(irq_handler_t, void *);
void stdma_lock(irq_handler_t handler, void *data);
void stdma_release( void );
int stdma_islocked( void );
int stdma_is_locked_by(irq_handler_t);
void stdma_init( void );

/************************* End of Prototypes **************************/



#endif  /* _atari_stdma_h */
back to top