Files
linux-apfs/include/linux/cuda.h
T

19 lines
462 B
C
Raw Normal View History

2005-04-16 15:20:36 -07:00
/*
* Definitions for talking to the CUDA. The CUDA is a microcontroller
* which controls the ADB, system power, RTC, and various other things.
*
* Copyright (C) 1996 Paul Mackerras.
*/
2011-12-13 09:26:45 +00:00
#ifndef _LINUX_CUDA_H
#define _LINUX_CUDA_H
2012-10-13 10:46:48 +01:00
#include <uapi/linux/cuda.h>
2005-04-16 15:20:36 -07:00
extern int find_via_cuda(void);
extern int cuda_request(struct adb_request *req,
void (*done)(struct adb_request *), int nbytes, ...);
extern void cuda_poll(void);
2011-12-13 09:26:45 +00:00
#endif /* _LINUX_CUDA_H */