V4L/DVB (8310): sms1xxx: remove kmutex_t typedef
remove typedef struct mutex kmutex_t fix one line > 80 columns Signed-off-by: Michael Krufky <mkrufky@linuxtv.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
This commit is contained in:
committed by
Mauro Carvalho Chehab
parent
4411d29165
commit
b1d8f9f5b8
@@ -112,10 +112,10 @@ struct smscore_registry_entry_t {
|
||||
|
||||
struct list_head g_smscore_notifyees;
|
||||
struct list_head g_smscore_devices;
|
||||
kmutex_t g_smscore_deviceslock;
|
||||
struct mutex g_smscore_deviceslock;
|
||||
|
||||
struct list_head g_smscore_registry;
|
||||
kmutex_t g_smscore_registrylock;
|
||||
struct mutex g_smscore_registrylock;
|
||||
|
||||
static int default_mode = 4;
|
||||
|
||||
|
@@ -36,8 +36,6 @@
|
||||
|
||||
#include <linux/mutex.h>
|
||||
|
||||
typedef struct mutex kmutex_t;
|
||||
|
||||
#define kmutex_init(_p_) mutex_init(_p_)
|
||||
#define kmutex_lock(_p_) mutex_lock(_p_)
|
||||
#define kmutex_trylock(_p_) mutex_trylock(_p_)
|
||||
@@ -392,7 +390,8 @@ extern void smscore_onresponse(struct smscore_device_t *coredev,
|
||||
struct smscore_buffer_t *cb);
|
||||
|
||||
|
||||
extern struct smscore_buffer_t *smscore_getbuffer(struct smscore_device_t *coredev);
|
||||
extern
|
||||
struct smscore_buffer_t *smscore_getbuffer(struct smscore_device_t *coredev);
|
||||
extern void smscore_putbuffer(struct smscore_device_t *coredev,
|
||||
struct smscore_buffer_t *cb);
|
||||
|
||||
|
@@ -28,7 +28,7 @@
|
||||
DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr);
|
||||
|
||||
struct list_head g_smsdvb_clients;
|
||||
kmutex_t g_smsdvb_clientslock;
|
||||
struct mutex g_smsdvb_clientslock;
|
||||
|
||||
static int smsdvb_onresponse(void *context, struct smscore_buffer_t *cb)
|
||||
{
|
||||
|
Reference in New Issue
Block a user