target: project: msm8996: Target specific command line

Add support to pass command line specific to a particular target, for
8996 pass command line argument to disable fpsimd settings based on the
hw id.

Change-Id: I8d0746f923b48b9964c2a12b2ef7737b4d45565e
diff --git a/include/target.h b/include/target.h
index 17c0c0e..e0a0264 100644
--- a/include/target.h
+++ b/include/target.h
@@ -1,7 +1,7 @@
 /*
  * Copyright (c) 2008 Travis Geiselbrecht
  *
- * Copyright (c) 2013-2015, The Linux Foundation. All rights reserved.
+ * Copyright (c) 2013-2016, The Linux Foundation. All rights reserved.
  *
  * Permission is hereby granted, free of charge, to any person obtaining
  * a copy of this software and associated documentation files
@@ -26,6 +26,7 @@
 #define __TARGET_H
 #include <qmp_phy.h>
 
+#define TARGET_MAX_CMDLNBUF 64
 /* Target helper functions exposed to USB driver */
 typedef struct {
 	void (*mux_config) ();
@@ -104,4 +105,5 @@
 bool target_battery_soc_ok();
 bool target_battery_is_present();
 uint32_t target_get_pmic();
+int target_update_cmdline(char *cmdline);
 #endif