121 lines
2.9 KiB
C
Executable File
121 lines
2.9 KiB
C
Executable File
/*
|
|
* Copyright (C) 2013 Samsung Electronics. All rights reserved.
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* version 2 as published by the Free Software Foundation.
|
|
*
|
|
* 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., 51 Franklin St, Fifth Floor, Boston, MA
|
|
* 02110-1301 USA
|
|
*/
|
|
|
|
/*
|
|
* fingerprint sysfs class
|
|
*/
|
|
|
|
#include <linux/module.h>
|
|
#include <linux/types.h>
|
|
#include <linux/init.h>
|
|
#include <linux/device.h>
|
|
#include <linux/fs.h>
|
|
#include <linux/err.h>
|
|
|
|
struct class *fingerprint_class;
|
|
EXPORT_SYMBOL_GPL(fingerprint_class);
|
|
|
|
/*
|
|
* Create sysfs interface
|
|
*/
|
|
static void set_fingerprint_attr(struct device *dev,
|
|
struct device_attribute *attributes[])
|
|
{
|
|
int i;
|
|
|
|
for (i = 0; attributes[i] != NULL; i++)
|
|
if ((device_create_file(dev, attributes[i])) < 0)
|
|
pr_err("%s: fail device_create_file"\
|
|
"(dev, attributes[%d])\n", __func__, i);
|
|
}
|
|
|
|
int fingerprint_register(struct device *dev, void *drvdata,
|
|
struct device_attribute *attributes[], char *name)
|
|
{
|
|
int ret = 0;
|
|
|
|
if (!fingerprint_class) {
|
|
fingerprint_class = class_create(THIS_MODULE, "fingerprint");
|
|
if (IS_ERR(fingerprint_class))
|
|
return PTR_ERR(fingerprint_class);
|
|
}
|
|
|
|
dev = device_create(fingerprint_class, NULL, 0, drvdata, "%s", name);
|
|
|
|
if (IS_ERR(dev)) {
|
|
ret = PTR_ERR(dev);
|
|
pr_err("%s: device_create failed!"\
|
|
"[%d]\n", __func__, ret);
|
|
return ret;
|
|
}
|
|
|
|
set_fingerprint_attr(dev, attributes);
|
|
|
|
return 0;
|
|
}
|
|
EXPORT_SYMBOL_GPL(fingerprint_register);
|
|
|
|
void fingerprint_unregister(struct device *dev,
|
|
struct device_attribute *attributes[])
|
|
{
|
|
int i;
|
|
|
|
for (i = 0; attributes[i] != NULL; i++)
|
|
device_remove_file(dev, attributes[i]);
|
|
}
|
|
EXPORT_SYMBOL_GPL(fingerprint_unregister);
|
|
|
|
void destroy_fingerprint_class(void)
|
|
{
|
|
if (fingerprint_class) {
|
|
class_destroy(fingerprint_class);
|
|
fingerprint_class = NULL;
|
|
}
|
|
}
|
|
EXPORT_SYMBOL_GPL(destroy_fingerprint_class);
|
|
|
|
static int __init fingerprint_class_init(void)
|
|
{
|
|
pr_info("%s\n", __func__);
|
|
fingerprint_class = class_create(THIS_MODULE, "fingerprint");
|
|
|
|
if (IS_ERR(fingerprint_class)) {
|
|
pr_err("%s, create fingerprint_class is failed.(err=%d)\n",
|
|
__func__, IS_ERR(fingerprint_class));
|
|
return PTR_ERR(fingerprint_class);
|
|
}
|
|
|
|
fingerprint_class->dev_uevent = NULL;
|
|
|
|
return 0;
|
|
}
|
|
|
|
static void __exit fingerprint_class_exit(void)
|
|
{
|
|
if (fingerprint_class) {
|
|
class_destroy(fingerprint_class);
|
|
fingerprint_class = NULL;
|
|
}
|
|
}
|
|
|
|
subsys_initcall(fingerprint_class_init);
|
|
module_exit(fingerprint_class_exit);
|
|
|
|
MODULE_DESCRIPTION("fingerprint sysfs class");
|
|
MODULE_LICENSE("GPL");
|