dell-rbtn.h 815 B

12345678910111213141516171819202122232425
  1. /*
  2. Dell Airplane Mode Switch driver
  3. Copyright (C) 2014-2015 Pali Rohár <pali.rohar@gmail.com>
  4. This program is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation; either version 2 of the License, or
  7. (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. */
  13. #ifndef _DELL_RBTN_H_
  14. #define _DELL_RBTN_H_
  15. struct notifier_block;
  16. int dell_rbtn_notifier_register(struct notifier_block *nb);
  17. int dell_rbtn_notifier_unregister(struct notifier_block *nb);
  18. #endif