1 /* SPDX-License-Identifier: GPL-2.0 */ 2 /* 3 * Copyright (c) 2024 Meta Platforms, Inc. and affiliates. 4 * Copyright (c) 2024 David Vernet <dvernet@meta.com> 5 */ 6 7 #ifndef __HOTPLUG_TEST_H__ 8 #define __HOTPLUG_TEST_H__ 9 10 enum hotplug_test_flags { 11 HOTPLUG_EXIT_RSN = 1LLU << 0, 12 HOTPLUG_ONLINING = 1LLU << 1, 13 }; 14 15 #endif // # __HOTPLUG_TEST_H__ 16