Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-only */
0002 /*
0003  *
0004  *  Copyright (C) 2005 Mike Isely <isely@pobox.com>
0005  */
0006 #ifndef __PVRUSB2_SYSFS_H
0007 #define __PVRUSB2_SYSFS_H
0008 
0009 #include <linux/list.h>
0010 #include <linux/sysfs.h>
0011 #include "pvrusb2-context.h"
0012 
0013 struct pvr2_sysfs;
0014 struct pvr2_sysfs_class;
0015 
0016 struct pvr2_sysfs_class *pvr2_sysfs_class_create(void);
0017 void pvr2_sysfs_class_destroy(struct pvr2_sysfs_class *);
0018 
0019 struct pvr2_sysfs *pvr2_sysfs_create(struct pvr2_context *,
0020                      struct pvr2_sysfs_class *);
0021 
0022 #endif /* __PVRUSB2_SYSFS_H */