Generate xlat/*.in files

Automatically convert xlat structures from *.c files to xlat/*.in files
using "./generate_xlat_in.sh *.c" command.
diff --git a/ptp.c b/ptp.c
index 773f3d5..64e9905 100644
--- a/ptp.c
+++ b/ptp.c
@@ -2,12 +2,7 @@
 #include <sys/ioctl.h>
 #include <linux/ptp_clock.h>
 
-static const struct xlat ptp_flags_options[] = {
-	XLAT(PTP_ENABLE_FEATURE),
-	XLAT(PTP_RISING_EDGE),
-	XLAT(PTP_FALLING_EDGE),
-	XLAT_END
-};
+#include "xlat/ptp_flags_options.h"
 
 
 int ptp_ioctl(struct tcb *tcp, long code, long arg)