diff options
author | Nick Child <nick.child@ibm.com> | 2021-12-16 17:00:35 -0500 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2021-12-23 22:35:00 +1100 |
commit | 7da1d1ddd1f02e5de7497a0c849256912652fb6c (patch) | |
tree | 6ceaf8d9d8b4d8aec69cf7e5886e3efacb056753 /include/linux/cuda.h | |
parent | 2493a24271dab3d5c1235a13cf6ee2d12773c9a1 (diff) |
cuda/pmu: Make find_via_cuda/pmu init functions
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
Diffstat (limited to 'include/linux/cuda.h')
-rw-r--r-- | include/linux/cuda.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/cuda.h b/include/linux/cuda.h index 45bfe9d61271..daf3e6f98444 100644 --- a/include/linux/cuda.h +++ b/include/linux/cuda.h @@ -12,7 +12,7 @@ #include <uapi/linux/cuda.h> -extern int find_via_cuda(void); +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); |