mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
5ef1e02e99
SYR82X and SYR83X are almost identical to FAN53555, the only difference is different die ID and revision, voltage ranges and steps. Signed-off-by: Vasily Khoruzhick <anarsoul@gmail.com> Tested-by: Anand Moon <linux.amoon@gmail.com> Reviewed-by: Kever Yang <kever.yang@rock-chips.com>
14 lines
240 B
C
14 lines
240 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright (C) 2019 Vasily Khoruzhick <anarsoul@gmail.com>
|
|
*/
|
|
|
|
#ifndef _FAN53555_H_
|
|
#define _FAN53555_H_
|
|
|
|
enum fan53555_vendor {
|
|
FAN53555_VENDOR_FAIRCHILD,
|
|
FAN53555_VENDOR_SILERGY,
|
|
};
|
|
|
|
#endif
|