manifest.h 331 B

1234567891011121314151617
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * Greybus manifest parsing
  4. *
  5. * Copyright 2014 Google Inc.
  6. * Copyright 2014 Linaro Ltd.
  7. */
  8. #ifndef __MANIFEST_H
  9. #define __MANIFEST_H
  10. #include <linux/types.h>
  11. struct gb_interface;
  12. bool gb_manifest_parse(struct gb_interface *intf, void *data, size_t size);
  13. #endif /* __MANIFEST_H */