Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v5.2-rc7 15 lines 302 B view raw
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 9#ifndef __MANIFEST_H 10#define __MANIFEST_H 11 12struct gb_interface; 13bool gb_manifest_parse(struct gb_interface *intf, void *data, size_t size); 14 15#endif /* __MANIFEST_H */