Skip to content

Commit

Permalink
treewide: squash sparse static warnings
Browse files Browse the repository at this point in the history
Add static to various declarations that can use it, as found by sparse.

It turns out that one of these (fsp_pcie_inv_lock in
platform/ibm-fsp/firenze.c) is actually unused, so remove it.

Signed-off-by: Andrew Donnellan <andrew.donnellan@au1.ibm.com>
Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
  • Loading branch information
ajdlinux authored and stewartsmith committed Jan 5, 2017
1 parent 197f3ca commit d572642
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion core/nvram-format.c
Expand Up @@ -28,7 +28,7 @@ struct chrp_nvram_hdr {
char name[12];
};

struct chrp_nvram_hdr *skiboot_part_hdr;
static struct chrp_nvram_hdr *skiboot_part_hdr;

#define NVRAM_SIG_FW_PRIV 0x51
#define NVRAM_SIG_SYSTEM 0x70
Expand Down
2 changes: 1 addition & 1 deletion hw/ipmi/ipmi-attn.c
Expand Up @@ -33,7 +33,7 @@ DEFINE_LOG_ENTRY(OPAL_RC_ATTN, OPAL_PLATFORM_ERR_EVT,
static char ti_buffer[IPMI_TI_BUFFER_SIZE];

#define STACK_BUF_ENTRIES 20
struct bt_entry bt_buf[STACK_BUF_ENTRIES];
static struct bt_entry bt_buf[STACK_BUF_ENTRIES];

/* Log eSEL event with OPAL backtrace */
static void ipmi_log_terminate_event(const char *msg)
Expand Down
2 changes: 1 addition & 1 deletion hw/prd.c
Expand Up @@ -33,7 +33,7 @@ static uint8_t events[MAX_CHIPS];
static uint64_t ipoll_status[MAX_CHIPS];
static struct opal_prd_msg prd_msg;
static bool prd_msg_inuse, prd_active;
struct dt_node *prd_node;
static struct dt_node *prd_node;

/* Locking:
*
Expand Down
2 changes: 1 addition & 1 deletion platforms/astbmc/p8dtu.c
Expand Up @@ -227,7 +227,7 @@ static bool p8dtu2u_probe(void)
return true;
}

const struct bmc_platform astbmc_smc = {
static const struct bmc_platform astbmc_smc = {
.name = "SMC",
.ipmi_oem_partial_add_esel = IPMI_CODE(0x3a, 0xf0),
.ipmi_oem_pnor_access_status = IPMI_CODE(0x3a, 0x07),
Expand Down
2 changes: 0 additions & 2 deletions platforms/ibm-fsp/firenze.c
Expand Up @@ -28,8 +28,6 @@
#include "ibm-fsp.h"
#include "lxvpd.h"

struct lock fsp_pcie_inv_lock = LOCK_UNLOCKED;

static struct dt_node *dt_create_i2c_master(struct dt_node *n, uint32_t eng_id)
{
struct dt_node *i2cm;
Expand Down

0 comments on commit d572642

Please sign in to comment.