// 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; | |
} |