hotplug_test.h 339 B

123456789101112131415
  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. #ifndef __HOTPLUG_TEST_H__
  7. #define __HOTPLUG_TEST_H__
  8. enum hotplug_test_flags {
  9. HOTPLUG_EXIT_RSN = 1LLU << 0,
  10. HOTPLUG_ONLINING = 1LLU << 1,
  11. };
  12. #endif // # __HOTPLUG_TEST_H__