ARC: add helpers to sanitize config options
We'll use this macro in coming patches extensively. Reviewed-by: Vineet Gupta <vgupta@synopsys.com> Signed-off-by: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com> Signed-off-by: Vineet Gupta <vgupta@synopsys.com>
This commit is contained in:
committed by
Vineet Gupta
parent
f61f530c5a
commit
240c84b1c2
24
arch/arc/include/asm/asserts.h
Normal file
24
arch/arc/include/asm/asserts.h
Normal file
@@ -0,0 +1,24 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
/*
|
||||
* Copyright (C) 2020 Synopsys, Inc. (www.synopsys.com)
|
||||
*
|
||||
* Author: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
|
||||
*/
|
||||
#ifndef __ASM_ARC_ASSERTS_H
|
||||
#define __ASM_ARC_ASSERTS_H
|
||||
|
||||
/* Helpers to sanitize config options. */
|
||||
|
||||
void chk_opt_strict(char *opt_name, bool hw_exists, bool opt_ena);
|
||||
|
||||
/*
|
||||
* Check required config option:
|
||||
* - panic in case of OPT enabled but corresponding HW absent.
|
||||
* - warn in case of OPT disabled but corresponding HW exists.
|
||||
*/
|
||||
#define CHK_OPT_STRICT(opt_name, hw_exists) \
|
||||
({ \
|
||||
chk_opt_strict(#opt_name, hw_exists, IS_ENABLED(opt_name)); \
|
||||
})
|
||||
|
||||
#endif /* __ASM_ARC_ASSERTS_H */
|
||||
Reference in New Issue
Block a user