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 v4.14-rc7 18 lines 458 B view raw
1#ifndef __QCOM_MDT_LOADER_H__ 2#define __QCOM_MDT_LOADER_H__ 3 4#include <linux/types.h> 5 6#define QCOM_MDT_TYPE_MASK (7 << 24) 7#define QCOM_MDT_TYPE_HASH (2 << 24) 8#define QCOM_MDT_RELOCATABLE BIT(27) 9 10struct device; 11struct firmware; 12 13ssize_t qcom_mdt_get_size(const struct firmware *fw); 14int qcom_mdt_load(struct device *dev, const struct firmware *fw, 15 const char *fw_name, int pas_id, void *mem_region, 16 phys_addr_t mem_phys, size_t mem_size); 17 18#endif