target/cortex_m: add Cortex-M part number getter
[fw/openocd] / src / target / quark_d20xx.c
index f797214170c2a55abc0d0fe2b9a22beb70bc4c06..211245d7db358ca2598e21b5c1cd478c579cc8ff 100644 (file)
@@ -14,6 +14,9 @@
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * General Public License for more details.
  *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ *
  * Contact Information:
  * Intel Corporation
  */
 #include "lakemont.h"
 #include "x86_32_common.h"
 
-int quark_d20xx_target_create(struct target *t, Jim_Interp *interp)
+static int quark_d20xx_target_create(struct target *t, Jim_Interp *interp)
 {
        struct x86_32_common *x86_32 = calloc(1, sizeof(struct x86_32_common));
-       if (x86_32 == NULL) {
+       if (!x86_32) {
                LOG_ERROR("%s out of memory", __func__);
                return ERROR_FAIL;
        }
@@ -53,7 +56,7 @@ int quark_d20xx_target_create(struct target *t, Jim_Interp *interp)
        return ERROR_OK;
 }
 
-int quark_d20xx_init_target(struct command_context *cmd_ctx, struct target *t)
+static int quark_d20xx_init_target(struct command_context *cmd_ctx, struct target *t)
 {
        return lakemont_init_target(cmd_ctx, t);
 }