From 67ec9a298dbedbe2fa1133451690e93555ae598b Mon Sep 17 00:00:00 2001 From: Francisco Molina Date: Tue, 11 Feb 2020 22:11:54 +0100 Subject: [PATCH] cpu/efm32: remove exports --- cpu/efm32/efm32-features.mk | 2 +- cpu/efm32/efm32-info.mk | 20 ++++++++++---------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/cpu/efm32/efm32-features.mk b/cpu/efm32/efm32-features.mk index 893221c049..ebb5ee338d 100644 --- a/cpu/efm32/efm32-features.mk +++ b/cpu/efm32/efm32-features.mk @@ -1,4 +1,4 @@ # This file provides defaults for additional EFM32-specific features. You # should override them from the command line, or in your Makefile. Note that # some features may not be applicable to all EFM32 boards or CPUs. -export EFM32_LEUART_ENABLED ?= 1 +EFM32_LEUART_ENABLED ?= 1 diff --git a/cpu/efm32/efm32-info.mk b/cpu/efm32/efm32-info.mk index 2d687b0ad3..83ee62dd74 100644 --- a/cpu/efm32/efm32-info.mk +++ b/cpu/efm32/efm32-info.mk @@ -13,15 +13,15 @@ ifeq (,$(EFM32_INFO)) endif # Export variables to use in this build. -export EFM32_FAMILY = $(word 2, $(EFM32_INFO)) -export EFM32_SERIES = $(word 3, $(EFM32_INFO)) -export EFM32_ARCHITECTURE = $(word 4, $(EFM32_INFO)) +EFM32_FAMILY = $(word 2, $(EFM32_INFO)) +EFM32_SERIES = $(word 3, $(EFM32_INFO)) +EFM32_ARCHITECTURE = $(word 4, $(EFM32_INFO)) -export EFM32_FLASH_START = $(word 5, $(EFM32_INFO)) -export EFM32_FLASH_SIZE = $(word 6, $(EFM32_INFO)) -export EFM32_SRAM_START = $(word 7, $(EFM32_INFO)) -export EFM32_SRAM_SIZE = $(word 8, $(EFM32_INFO)) +EFM32_FLASH_START = $(word 5, $(EFM32_INFO)) +EFM32_FLASH_SIZE = $(word 6, $(EFM32_INFO)) +EFM32_SRAM_START = $(word 7, $(EFM32_INFO)) +EFM32_SRAM_SIZE = $(word 8, $(EFM32_INFO)) -export EFM32_CRYPTO = $(word 9, $(EFM32_INFO)) -export EFM32_TRNG = $(word 10, $(EFM32_INFO)) -export EFM32_RADIO = $(word 11, $(EFM32_INFO)) +EFM32_CRYPTO = $(word 9, $(EFM32_INFO)) +EFM32_TRNG = $(word 10, $(EFM32_INFO)) +EFM32_RADIO = $(word 11, $(EFM32_INFO))