/* ------------------------------------------------------------------------- * Copyright (C) 2013-2014 Inside Secure * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * ------------------------------------------------------------------------- */ /* ------------------------------------------------------------------------- * Copyright (C) 2014-2016, Intel Corporation * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * ------------------------------------------------------------------------- */ /* * FieldsPeak driver module. * */ #include #include #include /* function prototypes */ int fdp_custom_init(void); void fdp_custom_exit(void); int fdp_custom_open(struct inode *inode, struct file *filp); int fdp_custom_release(struct inode *inode, struct file *filp); ssize_t fdp_custom_read(struct file *filp, char __user *buf, size_t count, loff_t *f_pos); ssize_t fdp_custom_write(struct file *filp, const char __user *buf, size_t count, loff_t *f_pos); unsigned int fdp_custom_poll(struct file * filp, poll_table *wait); long fdp_custom_ioctl_reset(struct file *filp, unsigned int cmd, unsigned long arg); /* EOF */