*参照元 [#re2e01bf] #backlinks *説明 [#m710860c] -パス: [[linux-4.4.1/drivers/staging/android/ion/ion.h]] -FIXME: これは何? --説明 **参考 [#xaa7e7d4] *実装 [#l83183e3] /** * struct ion_platform_heap - defines a heap in the given platform * @type: type of the heap from ion_heap_type enum * @id: unique identifier for heap. When allocating higher numbers * will be allocated from first. At allocation these are passed * as a bit mask and therefore can not exceed ION_NUM_HEAP_IDS. * @name: used for debug purposes * @base: base address of heap in physical memory if applicable * @size: size of the heap in bytes if applicable * @align: required alignment in physical memory if applicable * @priv: private info passed from the board file * * Provided by the board file. */ struct ion_platform_heap { enum ion_heap_type type; - --[[linux-4.4.1/ion_heap_type]] unsigned int id; const char *name; ion_phys_addr_t base; - --[[linux-4.4.1/ion_phys_addr_t]] size_t size; ion_phys_addr_t align; - --[[linux-4.4.1/ion_phys_addr_t]] void *priv; }; *コメント [#n647e53e]