mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 16:07:30 +00:00
0f4ec05bbb
These files only need error number macros. Actually, IS_ERR(), PTR_ERR(), ERR_PTR(), etc. are not useful for U-Boot. Avoid unnecessary header includes. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
32 lines
631 B
C
32 lines
631 B
C
/*
|
|
* Copyright (C) 2016 Socionext Inc.
|
|
* Author: Masahiro Yamada <yamada.masahiro@socionext.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#include <linux/errno.h>
|
|
#include <dm/device.h>
|
|
#include <dm/pinctrl.h>
|
|
#include <dm/uclass.h>
|
|
|
|
#include "init.h"
|
|
|
|
int uniphier_pin_init(const char *pinconfig_name)
|
|
{
|
|
struct udevice *pctldev, *config, *next;
|
|
int ret;
|
|
|
|
ret = uclass_first_device(UCLASS_PINCTRL, &pctldev);
|
|
if (ret)
|
|
return ret;
|
|
|
|
device_foreach_child_safe(config, next, pctldev) {
|
|
if (strcmp(config->name, pinconfig_name))
|
|
continue;
|
|
|
|
return pinctrl_generic_set_state(pctldev, config);
|
|
}
|
|
|
|
return -ENODEV;
|
|
}
|