Add missing license and copyright headers

The following files didn't have any copyright or license headers on them
when they got contributed.  So add the SPDX Apache license and
appropriate copyright info:

boards/arm/stm32l476g_disco/pinmux.c
samples/basic/threads/src/main.c
tests/net/socket/tcp/src/main.c

Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
This commit is contained in:
Kumar Gala 2017-12-05 07:48:11 -06:00 committed by Kumar Gala
parent 2386ce7af8
commit 6b38f57225
3 changed files with 18 additions and 0 deletions

View file

@ -1,3 +1,9 @@
/*
* Copyright (c) 2017 Arthur Sfez
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <kernel.h>
#include <device.h>
#include <init.h>

View file

@ -1,3 +1,9 @@
/*
* Copyright (c) 2017 Linaro Limited
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <zephyr.h>
#include <device.h>
#include <gpio.h>

View file

@ -1,3 +1,9 @@
/*
* Copyright (c) 2017 Linaro Limited
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <ztest_assert.h>
#include <net/socket.h>