mirror of
https://github.com/team-infusion-developers/android_kernel_samsung_msm8976.git
synced 2024-10-31 18:09:19 +00:00
607ca46e97
Signed-off-by: David Howells <dhowells@redhat.com> Acked-by: Arnd Bergmann <arnd@arndb.de> Acked-by: Thomas Gleixner <tglx@linutronix.de> Acked-by: Michael Kerrisk <mtk.manpages@gmail.com> Acked-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com> Acked-by: Dave Jones <davej@redhat.com>
18 lines
462 B
C
18 lines
462 B
C
/*
|
|
* 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 */
|