arm: pdu001: Fix order of include filesFix the order of include files according to U-Boot coding style.Signed-off-by: Felix Brack <fb@ltec.ch>
configs: am335x_pdu001: remove CONFIG_DM_I2C_COMPATRemove the last call to the non-DM I2C API.Also remove the #undef CONFIG_DM_I2C_COMPAT because it is not definedin the common header file anymor
configs: am335x_pdu001: remove CONFIG_DM_I2C_COMPATRemove the last call to the non-DM I2C API.Also remove the #undef CONFIG_DM_I2C_COMPAT because it is not definedin the common header file anymore.Signed-off-by: Jean-Jacques Hiblot <jjhiblot@ti.com>Reviewed-by: Felix Brack <fb@ltec.ch>Tested-by: Felix Brack <fb@ltec.ch>Reviewed-by: Heiko Schocher <hs@denx.de>
show more ...
board: eets: pdu001: Fix wrong default value in KconfigAfter importing linux v4.16-rc1 commit 2c37e08464a8 ("kconfig: Warn ifchoice default is not in choice"), Kconfig complains:scripts/kconfig/
board: eets: pdu001: Fix wrong default value in KconfigAfter importing linux v4.16-rc1 commit 2c37e08464a8 ("kconfig: Warn ifchoice default is not in choice"), Kconfig complains:scripts/kconfig/conf --syncconfig Kconfigboard/eets/pdu001/Kconfig:22:warning: \ choice default symbol 'PDU001_RUN_LED_RED' \ is not contained in the choiceThis looks to be caused by a typo. Fix it.Fixes: 85ab0452fefc ("arm: add support for PDU001")Signed-off-by: Eugeniu Rosca <erosca@de.adit-jv.com>Reviewed-by: Masahiro Yamada <yamada.masahiro@socionext.com>Reviewed-by: Felix Brack <fb@ltec.ch>Tested-by: Felix Brack <fb@ltec.ch>
SPDX: Convert all of our single license tags to Linux Kernel styleWhen U-Boot started using SPDX tags we were among the early adopters andthere weren't a lot of other examples to borrow from. So
SPDX: Convert all of our single license tags to Linux Kernel styleWhen U-Boot started using SPDX tags we were among the early adopters andthere weren't a lot of other examples to borrow from. So we picked thearea of the file that usually had a full license text and replaced itwith an appropriate SPDX-License-Identifier: entry. Since then, theLinux Kernel has adopted SPDX tags and they place it as the very firstline in a file (except where shebangs are used, then it's second line)and with slightly different comment styles than us.In part due to community overlap, in part due to better tag visibilityand in part for other minor reasons, switch over to that style.This commit changes all instances where we have a single declaredlicense in the tag as both the before and after are identical in tagcontents. There's also a few places where I found we did not have a tagand have introduced one.Signed-off-by: Tom Rini <trini@konsulko.com>
Convert all of CONFIG_CONS_INDEX to KconfigThis converts the following to Kconfig: CONFIG_CONS_INDEXWe have existing entries for this option in a number of places, withdifferent guards on the
Convert all of CONFIG_CONS_INDEX to KconfigThis converts the following to Kconfig: CONFIG_CONS_INDEXWe have existing entries for this option in a number of places, withdifferent guards on them. They're also sometimes used for things notdirectly inside of the serial driver. First, introduce a new symbol toguard the use of CONFIG_CONS_INDEX, so that in the case where we don'tneed this for the serial driver, but for some other use, we can still doit. Next, consolidate all of these into the single entry indrivers/serial/Kconfig. Finally, introduce CONS_INDEX_[023456] so thatwe can imply a correct value here to make the defconfig side of thissmaller.Signed-off-by: Adam Ford <aford173@gmail.com>[trini: Rework a lot of the logic here, such that I took authorship fromAdam, but kept his S-o-B line]Signed-off-by: Tom Rini <trini@konsulko.com>
arm: add support for PDU001This patch adds support for the PDU001 board.Signed-off-by: Felix Brack <fb@ltec.ch>Reviewed-by: Tom Rini <trini@konsulko.com>