mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 02:30:34 +02:00 
			
		
		
		
	Having similar naming convention in intel-family.h and intel_device_info.h
results in redefinition of a few platforms. Define CPU IDs in its own file
to avoid this.
v3: Move file out of gt directory, add kernel doc (Riana)
    Rephrase file description (Jani)
Signed-off-by: Raag Jadav <raag.jadav@intel.com>
Acked-by: Jani Nikula <jani.nikula@intel.com>
Reviewed-by: Riana Tauro <riana.tauro@intel.com>
Reviewed-by: Andi Shyti <andi.shyti@linux.intel.com>
Signed-off-by: Andi Shyti <andi.shyti@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20241211115952.1659287-4-raag.jadav@intel.com
		
	
			
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			227 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			227 B
		
	
	
	
		
			C
		
	
	
	
	
	
/* SPDX-License-Identifier: MIT */
 | 
						|
/*
 | 
						|
 * Copyright © 2024 Intel Corporation
 | 
						|
 */
 | 
						|
 | 
						|
#ifndef _INTEL_CPU_INFO_H_
 | 
						|
#define _INTEL_CPU_INFO_H_
 | 
						|
 | 
						|
#include <linux/types.h>
 | 
						|
 | 
						|
bool intel_match_g8_cpu(void);
 | 
						|
 | 
						|
#endif /* _INTEL_CPU_INFO_H_ */
 |