suspend-none.c 441 B

1234567891011121314151617181920212223242526272829
  1. // SPDX-License-Identifier: GPL-2.0-or-later
  2. /*
  3. *
  4. * BlueZ - Bluetooth protocol stack for Linux
  5. *
  6. * Copyright (C) 2012 Nordic Semiconductor Inc.
  7. * Copyright (C) 2012 Instituto Nokia de Tecnologia - INdT
  8. *
  9. *
  10. */
  11. #ifdef HAVE_CONFIG_H
  12. #include <config.h>
  13. #endif
  14. #include "src/log.h"
  15. #include "suspend.h"
  16. int suspend_init(suspend_event suspend, resume_event resume)
  17. {
  18. DBG("");
  19. return 0;
  20. }
  21. void suspend_exit(void)
  22. {
  23. DBG("");
  24. }