mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-21 09:12:05 +00:00
This provides a test VCAP model for use in a KUNIT test. The model provides 3 different VCAP types for better test coverage. Signed-off-by: Steen Hegelund <steen.hegelund@microchip.com> Signed-off-by: David S. Miller <davem@davemloft.net>
11 lines
383 B
C
11 lines
383 B
C
/* SPDX-License-Identifier: BSD-3-Clause */
|
|
/* Copyright (C) 2022 Microchip Technology Inc. and its subsidiaries.
|
|
* Microchip VCAP test model interface for kunit testing
|
|
*/
|
|
|
|
#ifndef __VCAP_MODEL_KUNIT_H__
|
|
#define __VCAP_MODEL_KUNIT_H__
|
|
extern const struct vcap_info kunit_test_vcaps[];
|
|
extern const struct vcap_statistics kunit_test_vcap_stats;
|
|
#endif /* __VCAP_MODEL_KUNIT_H__ */
|