Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 30c1bbffe629985d86bf68796a224ea4eac2685b 18 lines 462 B view raw
1/* 2 * Definitions for talking to the CUDA. The CUDA is a microcontroller 3 * which controls the ADB, system power, RTC, and various other things. 4 * 5 * Copyright (C) 1996 Paul Mackerras. 6 */ 7#ifndef _LINUX_CUDA_H 8#define _LINUX_CUDA_H 9 10#include <uapi/linux/cuda.h> 11 12 13extern int find_via_cuda(void); 14extern int cuda_request(struct adb_request *req, 15 void (*done)(struct adb_request *), int nbytes, ...); 16extern void cuda_poll(void); 17 18#endif /* _LINUX_CUDA_H */