blob: 6d60d14be02cc8c61f4991b790b2e1b3965ee109 [file] [log] [blame] [edit]
// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
/*
* Copyright (c) 2019 Amlogic, Inc. All rights reserved.
*/
#include <common.h>
int hdmitx_likely_frac_rate_mode(char *m)
{
if (strstr(m, "24hz") || strstr(m, "30hz") || strstr(m, "60hz") ||
strstr(m, "120hz") || strstr(m, "240hz"))
return 1;
else
return 0;
}