brintos

brintos / linux-shallow public Read only

0
0
Text · 292 B · 14fe566 Raw
14 lines · c
1/* SPDX-License-Identifier: GPL-2.0 */2/*3 * Counter sysfs interface4 * Copyright (C) 2020 William Breathitt Gray5 */6#ifndef _COUNTER_SYSFS_H_7#define _COUNTER_SYSFS_H_8 9#include <linux/counter.h>10 11int counter_sysfs_add(struct counter_device *const counter);12 13#endif /* _COUNTER_SYSFS_H_ */14