Revision 20e6c3cc90c0a86dba659dd9e7d60b429d88746d authored by Yicong Yang on 10 June 2022, 07:54:28 UTC, committed by Chanwoo Choi on 29 June 2022, 20:11:17 UTC
HZ macros has been centralized in units.h since [1]. Use it to avoid
duplicated definition.

[1] commit e2c77032fcbe ("units: add the HZ macros")

Signed-off-by: Yicong Yang <yangyicong@hisilicon.com>
Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
1 parent 0cca7e8
Raw File
cc-can-link.sh
#!/bin/sh
# SPDX-License-Identifier: GPL-2.0

cat << "END" | $@ -x c - -o /dev/null >/dev/null 2>&1
#include <stdio.h>
int main(void)
{
	printf("");
	return 0;
}
END
back to top