mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 05:04:26 +00:00
6717e15447
<common.h> pulls in a lot of bloat. <common.h> is unneeded in most of places. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Reviewed-by: Simon Glass <sjg@chromium.org>
30 lines
580 B
C
30 lines
580 B
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright (C) 2016 Socionext Inc.
|
|
* Author: Masahiro Yamada <yamada.masahiro@socionext.com>
|
|
*/
|
|
|
|
#include <linux/errno.h>
|
|
#include <dm.h>
|
|
#include <dm/pinctrl.h>
|
|
|
|
#include "init.h"
|
|
|
|
int uniphier_pin_init(const char *pinconfig_name)
|
|
{
|
|
struct udevice *pctldev, *config;
|
|
int ret;
|
|
|
|
ret = uclass_first_device(UCLASS_PINCTRL, &pctldev);
|
|
if (ret)
|
|
return ret;
|
|
|
|
device_foreach_child(config, pctldev) {
|
|
if (strcmp(config->name, pinconfig_name))
|
|
continue;
|
|
|
|
return pinctrl_generic_set_state(pctldev, config);
|
|
}
|
|
|
|
return -ENODEV;
|
|
}
|