accel/ivpu: Enable HWS by default on all platforms
[drm/drm-misc.git] / include / asm-generic / runtime-const.h
blob67049945951454142cc920c4cc7045e1bcf73b04
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _ASM_RUNTIME_CONST_H
3 #define _ASM_RUNTIME_CONST_H
5 /*
6 * This is the fallback for when the architecture doesn't
7 * support the runtime const operations.
9 * We just use the actual symbols as-is.
11 #define runtime_const_ptr(sym) (sym)
12 #define runtime_const_shift_right_32(val, sym) ((u32)(val)>>(sym))
13 #define runtime_const_init(type,sym) do { } while (0)
15 #endif