Skip to content

Commit

Permalink
powerpc: sparse: static-ify some things
Browse files Browse the repository at this point in the history
As sparse suggests, these should be made static.

Signed-off-by: Daniel Axtens <dja@axtens.net>
Reviewed-by: Andrew Donnellan <andrew.donnellan@au1.ibm.com>
Reviewed-by: Stewart Smith <stewart@linux.vnet.ibm.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
  • Loading branch information
Daniel Axtens authored and Michael Ellerman committed Apr 12, 2016
1 parent aa14138 commit 635218c
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion arch/powerpc/kernel/eeh_event.c
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@

static DEFINE_SPINLOCK(eeh_eventlist_lock);
static struct semaphore eeh_eventlist_sem;
LIST_HEAD(eeh_eventlist);
static LIST_HEAD(eeh_eventlist);

/**
* eeh_event_handler - Dispatch EEH events.
Expand Down
2 changes: 1 addition & 1 deletion arch/powerpc/kernel/ibmebus.c
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ static ssize_t modalias_show(struct device *dev,
return len+1;
}

struct device_attribute ibmebus_bus_device_attrs[] = {
static struct device_attribute ibmebus_bus_device_attrs[] = {
__ATTR_RO(devspec),
__ATTR_RO(name),
__ATTR_RO(modalias),
Expand Down
2 changes: 1 addition & 1 deletion arch/powerpc/kernel/mce.c
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ static DEFINE_PER_CPU(int, mce_queue_count);
static DEFINE_PER_CPU(struct machine_check_event[MAX_MC_EVT], mce_event_queue);

static void machine_check_process_queued_event(struct irq_work *work);
struct irq_work mce_event_process_work = {
static struct irq_work mce_event_process_work = {
.func = machine_check_process_queued_event,
};

Expand Down
2 changes: 1 addition & 1 deletion arch/powerpc/kernel/rtasd.c
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@ static void do_event_scan(void)
}

static void rtas_event_scan(struct work_struct *w);
DECLARE_DELAYED_WORK(event_scan_work, rtas_event_scan);
static DECLARE_DELAYED_WORK(event_scan_work, rtas_event_scan);

/*
* Delay should be at least one second since some machines have problems if
Expand Down
4 changes: 2 additions & 2 deletions arch/powerpc/kernel/vio.c
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ struct vio_cmo_dev_entry {
* @curr: bytes currently allocated
* @high: high water mark for IO data usage
*/
struct vio_cmo {
static struct vio_cmo {
spinlock_t lock;
struct delayed_work balance_q;
struct list_head device_list;
Expand Down Expand Up @@ -615,7 +615,7 @@ static u64 vio_dma_get_required_mask(struct device *dev)
return dma_iommu_ops.get_required_mask(dev);
}

struct dma_map_ops vio_dma_mapping_ops = {
static struct dma_map_ops vio_dma_mapping_ops = {
.alloc = vio_dma_iommu_alloc_coherent,
.free = vio_dma_iommu_free_coherent,
.mmap = dma_direct_mmap_coherent,
Expand Down

0 comments on commit 635218c

Please sign in to comment.