blob: 249d1f19411ef56305da9cd65777a51d24f1a623 [file] [log] [blame]
Vadim Bendebury41364f02014-02-27 13:26:02 -07001/*
2 * Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file.
5 *
6 * Alternatively, this software may be distributed under the terms of the
7 * GNU General Public License ("GPL") version 2 as published by the Free
8 * Software Foundation.
9 */
10
11#include <common.h>
12#include <cros_ec.h>
Simon Glass84d6cbd2014-10-13 23:42:14 -060013#include <dm.h>
14#include <errno.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060015#include <log.h>
Simon Glass84d6cbd2014-10-13 23:42:14 -060016
Simon Glass42116f62018-10-01 12:22:23 -060017struct udevice *board_get_cros_ec_dev(void)
Vadim Bendebury41364f02014-02-27 13:26:02 -070018{
Simon Glass84d6cbd2014-10-13 23:42:14 -060019 struct udevice *dev;
20 int ret;
21
22 ret = uclass_get_device(UCLASS_CROS_EC, 0, &dev);
23 if (ret) {
24 debug("%s: Error %d\n", __func__, ret);
25 return NULL;
26 }
Simon Glass42116f62018-10-01 12:22:23 -060027 return dev;
Vadim Bendebury41364f02014-02-27 13:26:02 -070028}