Commit a5ca2dfc authored by Julia Lawall's avatar Julia Lawall Committed by Greg Kroah-Hartman

staging: Make some structures static

This was done using a semantic patch (http://coccinelle.lip6.fr/) that
checks that the declaration is not inside a function definition, that the
defined variable is not exported using EXPORTED_SYMBOL, etc, and that the
defined variable does not occur in any other file.  If these conditions
hold, static is added before the declaration.
Signed-off-by: default avatarJulia Lawall <julia@diku.dk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent e7fcbf0e
...@@ -164,8 +164,8 @@ struct binder_transaction_log { ...@@ -164,8 +164,8 @@ struct binder_transaction_log {
int full; int full;
struct binder_transaction_log_entry entry[32]; struct binder_transaction_log_entry entry[32];
}; };
struct binder_transaction_log binder_transaction_log; static struct binder_transaction_log binder_transaction_log;
struct binder_transaction_log binder_transaction_log_failed; static struct binder_transaction_log binder_transaction_log_failed;
static struct binder_transaction_log_entry *binder_transaction_log_add( static struct binder_transaction_log_entry *binder_transaction_log_add(
struct binder_transaction_log *log) struct binder_transaction_log *log)
......
...@@ -950,7 +950,7 @@ static int audio_release(struct inode *inode, struct file *file) ...@@ -950,7 +950,7 @@ static int audio_release(struct inode *inode, struct file *file)
return 0; return 0;
} }
struct audio the_aac_audio; static struct audio the_aac_audio;
static int audio_open(struct inode *inode, struct file *file) static int audio_open(struct inode *inode, struct file *file)
{ {
......
...@@ -785,7 +785,7 @@ static int audio_in_release(struct inode *inode, struct file *file) ...@@ -785,7 +785,7 @@ static int audio_in_release(struct inode *inode, struct file *file)
return 0; return 0;
} }
struct audio_in the_audio_in; static struct audio_in the_audio_in;
static int audio_in_open(struct inode *inode, struct file *file) static int audio_in_open(struct inode *inode, struct file *file)
{ {
......
...@@ -864,7 +864,7 @@ static int audio_release(struct inode *inode, struct file *file) ...@@ -864,7 +864,7 @@ static int audio_release(struct inode *inode, struct file *file)
return 0; return 0;
} }
struct audio the_mp3_audio; static struct audio the_mp3_audio;
static int audio_open(struct inode *inode, struct file *file) static int audio_open(struct inode *inode, struct file *file)
{ {
......
...@@ -699,7 +699,7 @@ static int audio_release(struct inode *inode, struct file *file) ...@@ -699,7 +699,7 @@ static int audio_release(struct inode *inode, struct file *file)
return 0; return 0;
} }
struct audio the_audio; static struct audio the_audio;
static int audio_open(struct inode *inode, struct file *file) static int audio_open(struct inode *inode, struct file *file)
{ {
......
...@@ -122,7 +122,7 @@ struct rr_context { ...@@ -122,7 +122,7 @@ struct rr_context {
uint32_t count; /* bytes needed in this state */ uint32_t count; /* bytes needed in this state */
}; };
struct rr_context the_rr_context; static struct rr_context the_rr_context;
static struct platform_device rpcrouter_pdev = { static struct platform_device rpcrouter_pdev = {
.name = "oncrpc_router", .name = "oncrpc_router",
......
...@@ -27,9 +27,9 @@ ...@@ -27,9 +27,9 @@
#ifdef ZM_ENABLE_PERFORMANCE_EVALUATION #ifdef ZM_ENABLE_PERFORMANCE_EVALUATION
#define ZM_TP_SIZE 50 #define ZM_TP_SIZE 50
struct zsSummary zm_summary; static struct zsSummary zm_summary;
struct zsVariation zm_var; static struct zsVariation zm_var;
struct zsThroughput zm_tp; static struct zsThroughput zm_tp;
void zfiPerformanceInit(zdev_t* dev) void zfiPerformanceInit(zdev_t* dev)
{ {
......
...@@ -76,7 +76,7 @@ u32_t zfHpEchoCommand(zdev_t* dev, u32_t value); ...@@ -76,7 +76,7 @@ u32_t zfHpEchoCommand(zdev_t* dev, u32_t value);
#define zm_hp_priv(x) (((struct zsHpPriv*)wd->hpPrivate)->x) #define zm_hp_priv(x) (((struct zsHpPriv*)wd->hpPrivate)->x)
struct zsHpPriv zgHpPriv; static struct zsHpPriv zgHpPriv;
#define ZM_FIRMWARE_WLAN_ADDR 0x200000 #define ZM_FIRMWARE_WLAN_ADDR 0x200000
#define ZM_FIRMWARE_SPI_ADDR 0x114000 #define ZM_FIRMWARE_SPI_ADDR 0x114000
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment