drivers/misc/intel/pti: Rename the header file to free up the namespace

We'd like to use the 'PTI' acronym for 'Page Table Isolation' - free up the
namespace by renaming the <linux/pti.h> driver header to <linux/intel-pti.h>.

(Also standardize the header guard name while at it.)

Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: J Freyensee <james_p_freyensee@linux.intel.com>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: linux-kernel@vger.kernel.org
Signed-off-by: Ingo Molnar <mingo@kernel.org>

Changed files
+4 -4
drivers
misc
include
linux
+1 -1
drivers/misc/pti.c
··· 32 32 #include <linux/pci.h> 33 33 #include <linux/mutex.h> 34 34 #include <linux/miscdevice.h> 35 - #include <linux/pti.h> 35 + #include <linux/intel-pti.h> 36 36 #include <linux/slab.h> 37 37 #include <linux/uaccess.h> 38 38
+3 -3
include/linux/pti.h include/linux/intel-pti.h
··· 22 22 * interface to write out it's contents for debugging a mobile system. 23 23 */ 24 24 25 - #ifndef PTI_H_ 26 - #define PTI_H_ 25 + #ifndef LINUX_INTEL_PTI_H_ 26 + #define LINUX_INTEL_PTI_H_ 27 27 28 28 /* offset for last dword of any PTI message. Part of MIPI P1149.7 */ 29 29 #define PTI_LASTDWORD_DTS 0x30 ··· 40 40 const char *thread_name); 41 41 void pti_release_masterchannel(struct pti_masterchannel *mc); 42 42 43 - #endif /*PTI_H_*/ 43 + #endif /* LINUX_INTEL_PTI_H_ */