xref: /linux/rust/helpers/cpu.c (revision f688b599d711d169b22e99f2d055847d66c4e0d3)
1*c7f005f7SViresh Kumar // SPDX-License-Identifier: GPL-2.0
2*c7f005f7SViresh Kumar 
3*c7f005f7SViresh Kumar #include <linux/smp.h>
4*c7f005f7SViresh Kumar 
rust_helper_raw_smp_processor_id(void)5*c7f005f7SViresh Kumar unsigned int rust_helper_raw_smp_processor_id(void)
6*c7f005f7SViresh Kumar {
7*c7f005f7SViresh Kumar 	return raw_smp_processor_id();
8*c7f005f7SViresh Kumar }
9