mirror of
https://github.com/patjak/facetimehd.git
synced 2026-04-09 11:02:31 +02:00
19 lines
378 B
C
19 lines
378 B
C
/*
|
|
* SPDX-License-Identifier: GPL-2.0-only
|
|
*
|
|
* FacetimeHD camera driver
|
|
*
|
|
* Copyright (C) 2015 Sven Schnelle <svens@stackframe.org>
|
|
* 2016 Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
|
|
*
|
|
*/
|
|
|
|
#ifndef _FTHD_SYSFS_H
|
|
#define _FTHD_SYSFS_H
|
|
|
|
struct fthd_private;
|
|
|
|
int fthd_debugfs_init(struct fthd_private *priv);
|
|
void fthd_debugfs_exit(struct fthd_private *priv);
|
|
#endif
|