6db4831e98
Android 14
26 lines
706 B
C
26 lines
706 B
C
/*
|
|
* Copyright (c) 2014 Samsung Electronics Co., Ltd.
|
|
* http://www.samsung.com
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
#ifndef SEC_CLASS_H
|
|
#define SEC_CLASS_H
|
|
|
|
#ifdef CONFIG_DRV_SAMSUNG
|
|
extern struct device *sec_device_create(void *drvdata, const char *fmt);
|
|
extern void sec_device_destroy(dev_t devt);
|
|
extern struct device *sec_device_find(const char *name);
|
|
|
|
#else
|
|
#define sec_device_create(a, b) (-1)
|
|
#define sec_device_destroy(a) do { } while (0)
|
|
#endif
|
|
|
|
#endif /* SEC_CLASS_H */
|
|
|