cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

pvrusb2-sysfs.h (527B)


      1/* SPDX-License-Identifier: GPL-2.0-only */
      2/*
      3 *
      4 *  Copyright (C) 2005 Mike Isely <isely@pobox.com>
      5 */
      6#ifndef __PVRUSB2_SYSFS_H
      7#define __PVRUSB2_SYSFS_H
      8
      9#include <linux/list.h>
     10#include <linux/sysfs.h>
     11#include "pvrusb2-context.h"
     12
     13struct pvr2_sysfs;
     14struct pvr2_sysfs_class;
     15
     16struct pvr2_sysfs_class *pvr2_sysfs_class_create(void);
     17void pvr2_sysfs_class_destroy(struct pvr2_sysfs_class *);
     18
     19struct pvr2_sysfs *pvr2_sysfs_create(struct pvr2_context *,
     20				     struct pvr2_sysfs_class *);
     21
     22#endif /* __PVRUSB2_SYSFS_H */