thor.h 364 B

123456789101112131415161718
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * thor.h -- USB THOR Downloader protocol
  4. *
  5. * Copyright (C) 2013 Samsung Electronics
  6. * Lukasz Majewski <l.majewski@samsung.com>
  7. *
  8. */
  9. #ifndef __THOR_H_
  10. #define __THOR_H_
  11. #include <linux/usb/composite.h>
  12. int thor_handle(void);
  13. int thor_init(void);
  14. int thor_add(struct usb_configuration *c);
  15. #endif /* __THOR_H_ */