Skip to content

Commit

Permalink
mpc85xx: add static to init functions
Browse files Browse the repository at this point in the history
No reason for them not to be so. Matches various upstream commits for
PPC.

Signed-off-by: Rosen Penev <[email protected]>
Link: openwrt/openwrt#16345
Signed-off-by: Robert Marko <[email protected]>
  • Loading branch information
neheb authored and robimarko committed Sep 7, 2024
1 parent 5f3a7f7 commit 39d0fd6
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

#include "mpc85xx.h"

void __init br200_wp_pic_init(void)
static void __init br200_wp_pic_init(void)
{
struct mpic *mpic;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@

#include "mpc85xx.h"

void __init firebox_t10_pic_init(void)
static void __init firebox_t10_pic_init(void)
{
struct mpic *mpic;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

#include "mpc85xx.h"

void __init hiveap_330_pic_init(void)
static void __init hiveap_330_pic_init(void)
{
struct mpic *mpic;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@

#include "mpc85xx.h"

void __init msm_pic_init(void)
static void __init msm_pic_init(void)
{
struct mpic *mpic;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@

#include "mpc85xx.h"

void __init panda_pic_init(void)
static void __init panda_pic_init(void)
{
struct mpic *mpic;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@

#include "mpc85xx.h"

void __init red_15w_rev1_pic_init(void)
static void __init red_15w_rev1_pic_init(void)
{
struct mpic *mpic;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

#include "mpc85xx.h"

void __init tl_wdr4900_v1_pic_init(void)
static void __init tl_wdr4900_v1_pic_init(void)
{
struct mpic *mpic = mpic_alloc(NULL, 0, MPIC_BIG_ENDIAN |
MPIC_SINGLE_DEST_CPU,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@

#include "mpc85xx.h"

void __init ws_ap3710i_pic_init(void)
static void __init ws_ap3710i_pic_init(void)
{
struct mpic *mpic;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@

#include "mpc85xx.h"

void __init wsap3715i_pic_init(void)
static void __init wsap3715i_pic_init(void)
{
struct mpic *mpic;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@

#include "mpc85xx.h"

void __init ws_ap3825i_pic_init(void)
static void __init ws_ap3825i_pic_init(void)
{
struct mpic *mpic;

Expand Down

0 comments on commit 39d0fd6

Please sign in to comment.