blob: 73190aede229ce9ff32f975b9a8d59f41ed9886a [file] [log] [blame]
// SPDX-License-Identifier: GPL-2.0
/*
* Copyright (C) 2019 BayLibre SAS
*/
#include <common.h>
#include <dm.h>
int board_init(void)
{
struct udevice *dev;
uclass_first_device_err(UCLASS_USB_GADGET_GENERIC, &dev);
return 0;
}