Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 703ccb63ae9f7444d6ff876d024e17f628103c69 15 lines 414 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2#ifndef _ASM_RUNTIME_CONST_H 3#define _ASM_RUNTIME_CONST_H 4 5/* 6 * This is the fallback for when the architecture doesn't 7 * support the runtime const operations. 8 * 9 * We just use the actual symbols as-is. 10 */ 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) 14 15#endif