mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

scnprintf is declared in linux/kernel.h, directly depend upon it. Add missing SPDX comments. Signed-off-by: Ian Rogers <irogers@google.com> Link: https://lore.kernel.org/r/20250710235126.1086011-4-irogers@google.com Signed-off-by: Namhyung Kim <namhyung@kernel.org>
9 lines
173 B
C
9 lines
173 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef SPARK_H
|
|
#define SPARK_H 1
|
|
|
|
#define NUM_SPARKS 8
|
|
|
|
int print_spark(char *bf, int size, unsigned long *val, int numval);
|
|
|
|
#endif
|