swh:1:snp:c2847dfd741eae21606027cf29250d1ebcd63fb4
Raw File
Tip revision: 3b2f64d00c46e1e4e9bd0bb9bb12619adac27a4b authored by Linus Torvalds on 21 July 2013, 19:05:29 UTC
Linux 3.11-rc2
Tip revision: 3b2f64d
cuda.h
/*
 * 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.
 */
#ifndef _LINUX_CUDA_H
#define _LINUX_CUDA_H

#include <uapi/linux/cuda.h>


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);

#endif /* _LINUX_CUDA_H */
back to top