rename defines in headers
authorVyacheslav Cherkashin <v.cherkashin@samsung.com>
Tue, 29 Jan 2013 09:31:02 +0000 (13:31 +0400)
committerVyacheslav Cherkashin <v.cherkashin@samsung.com>
Tue, 29 Jan 2013 09:31:02 +0000 (13:31 +0400)
driver/sspt/sspt_file.h
driver/sspt/sspt_page.h
driver/sspt/sspt_procs.h

index 5b04ece..5f2f2d6 100644 (file)
@@ -1,5 +1,5 @@
-#ifndef __FILE_PROBES__
-#define __FILE_PROBES__
+#ifndef __SSPT_FILE__
+#define __SSPT_FILE__
 
 #include "ip.h"
 #include <linux/types.h>
@@ -28,4 +28,4 @@ void sspt_file_add_ip(struct sspt_file *file, struct ip_data *ip_d);
 struct sspt_page *sspt_get_page(struct sspt_file *file, unsigned long offset_addr);
 void sspt_put_page(struct sspt_page *page);
 
-#endif /* __FILE_PROBES__ */
+#endif /* __SSPT_FILE__ */
index b021b84..49fb2b1 100644 (file)
@@ -1,5 +1,5 @@
-#ifndef __PAGE_PROBES__
-#define __PAGE_PROBES__
+#ifndef __SSPT_PAGE__
+#define __SSPT_PAGE__
 
 #include <linux/types.h>
 #include <linux/spinlock.h>
@@ -47,4 +47,4 @@ static inline void sspt_page_uninstalled(struct sspt_page *page)
 
 void sspt_set_all_ip_addr(struct sspt_page *page, const struct sspt_file *file);
 
-#endif /* __PAGE_PROBES__ */
+#endif /* __SSPT_PAGE__ */
index f10ca71..e081081 100644 (file)
@@ -1,5 +1,5 @@
-#ifndef __PROC_PROBES__
-#define __PROC_PROBES__
+#ifndef __SSPT_PROC__
+#define __SSPT_PROC__
 
 #include <linux/types.h>
 #include "sspt_file.h"
@@ -23,4 +23,4 @@ struct sspt_file *proc_p_find_file_p_by_dentry(struct sspt_procs *procs,
                const char *pach, struct dentry *dentry);
 struct sspt_file *sspt_procs_find_file(struct sspt_procs *procs, struct vm_area_struct *vma);
 
-#endif /* __PROC_PROBES__ */
+#endif /* __SSPT_PROC__ */