Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 106712
b: refs/heads/master
c: c5e0bd1
h: refs/heads/master
v: v3
  • Loading branch information
Adrian Bunk authored and Mauro Carvalho Chehab committed Jul 26, 2008
1 parent 32028ca commit efb9839
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: e5b13acf563e98ffc5dea8bebf80299a2a4ea088
refs/heads/master: c5e0bd1a982ee449b3598600f85895dc3bc8c13f
14 changes: 7 additions & 7 deletions trunk/drivers/media/dvb/siano/smscoreapi.c
Original file line number Diff line number Diff line change
Expand Up @@ -110,12 +110,12 @@ struct smscore_registry_entry_t {
enum sms_device_type_st type;
};

struct list_head g_smscore_notifyees;
struct list_head g_smscore_devices;
struct mutex g_smscore_deviceslock;
static struct list_head g_smscore_notifyees;
static struct list_head g_smscore_devices;
static struct mutex g_smscore_deviceslock;

struct list_head g_smscore_registry;
struct mutex g_smscore_registrylock;
static struct list_head g_smscore_registry;
static struct mutex g_smscore_registrylock;

static int default_mode = 4;

Expand Down Expand Up @@ -1187,7 +1187,7 @@ int smsclient_sendrequest(struct smscore_client_t *client,
}


int smscore_module_init(void)
static int __init smscore_module_init(void)
{
int rc = 0;

Expand All @@ -1209,7 +1209,7 @@ int smscore_module_init(void)
return rc;
}

void smscore_module_exit(void)
static void __exit smscore_module_exit(void)
{

kmutex_lock(&g_smscore_deviceslock);
Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/media/dvb/siano/smsdvb.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@

DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr);

struct list_head g_smsdvb_clients;
struct mutex g_smsdvb_clientslock;
static struct list_head g_smsdvb_clients;
static struct mutex g_smsdvb_clientslock;

static int smsdvb_onresponse(void *context, struct smscore_buffer_t *cb)
{
Expand Down

0 comments on commit efb9839

Please sign in to comment.