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 91d88ce22bca3dcf269661b54d4ea75576dc4e29 18 lines 468 B view raw
1/* Common header for intel-gtt.ko and i915.ko */ 2 3#ifndef _DRM_INTEL_GTT_H 4#define _DRM_INTEL_GTT_H 5struct intel_gtt { 6 /* Number of stolen gtt entries at the beginning. */ 7 unsigned int gtt_stolen_entries; 8 /* Total number of gtt entries. */ 9 unsigned int gtt_total_entries; 10 /* Part of the gtt that is mappable by the cpu, for those chips where 11 * this is not the full gtt. */ 12 unsigned int gtt_mappable_entries; 13}; 14 15struct intel_gtt *intel_gtt_get(void); 16 17#endif 18