mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2024-12-28 16:52:18 +00:00
7da1d1ddd1
Make `find_via_cuda` and `find_via_pmu` initialization functions. Previously, their definitions in `drivers/macintosh/via-cuda.h` include the `__init` attribute but their alternative definitions in `arch/powerpc/powermac/sectup./c` and prototypes in `include/linux/ cuda.h` and `include/linux/pmu.h` do not use the `__init` macro. Since, only initialization functions call `find_via_cuda` and `find_via_pmu` it is safe to label these functions with `__init`. Signed-off-by: Nick Child <nick.child@ibm.com> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> Link: https://lore.kernel.org/r/20211216220035.605465-21-nick.child@ibm.com
24 lines
620 B
C
24 lines
620 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* 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 <linux/rtc.h>
|
|
#include <uapi/linux/cuda.h>
|
|
|
|
|
|
extern int __init find_via_cuda(void);
|
|
extern int cuda_request(struct adb_request *req,
|
|
void (*done)(struct adb_request *), int nbytes, ...);
|
|
extern void cuda_poll(void);
|
|
|
|
extern time64_t cuda_get_time(void);
|
|
extern int cuda_set_rtc_time(struct rtc_time *tm);
|
|
|
|
#endif /* _LINUX_CUDA_H */
|