mirror of
https://github.com/linux-msm/laptops-kernel.git
synced 2026-08-13 14:19:53 -07:00
Add a dummy runtime_const_mask_32() for all the architectures that do not support runtime-const. Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org> Signed-off-by: K Prateek Nayak <kprateek.nayak@amd.com> Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org> Reviewed-by: Charlie Jenkins <thecharlesjenkins@gmail.com> Tested-by: Charlie Jenkins <thecharlesjenkins@gmail.com> Link: https://patch.msgid.link/20260227161841.GH606826@noisy.programming.kicks-ass.net Link: https://patch.msgid.link/20260728052540.4728-8-kprateek.nayak@amd.com
17 lines
473 B
C
17 lines
473 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef _ASM_RUNTIME_CONST_H
|
|
#define _ASM_RUNTIME_CONST_H
|
|
|
|
/*
|
|
* This is the fallback for when the architecture doesn't
|
|
* support the runtime const operations.
|
|
*
|
|
* We just use the actual symbols as-is.
|
|
*/
|
|
#define runtime_const_ptr(sym) (sym)
|
|
#define runtime_const_shift_right_32(val, sym) ((u32)(val)>>(sym))
|
|
#define runtime_const_mask_32(val, sym) ((u32)(val)&(sym))
|
|
#define runtime_const_init(type,sym) do { } while (0)
|
|
|
|
#endif
|