rodata_test.h 394 B

123456789101112131415161718
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * rodata_test.h: functional test for mark_rodata_ro function
  4. *
  5. * (C) Copyright 2008 Intel Corporation
  6. * Author: Arjan van de Ven <arjan@linux.intel.com>
  7. */
  8. #ifndef _RODATA_TEST_H
  9. #define _RODATA_TEST_H
  10. #ifdef CONFIG_DEBUG_RODATA_TEST
  11. void rodata_test(void);
  12. #else
  13. static inline void rodata_test(void) {}
  14. #endif
  15. #endif /* _RODATA_TEST_H */