Skip to content

Commit

Permalink
ARM: imx/pcm970: make platform_data static
Browse files Browse the repository at this point in the history
This fixes the following sparse warning:

	arch/arm/mach-imx/pcm970-baseboard.c:224:13: warning: symbol 'pcm970_baseboard_init' was not declared. Should it be static?

Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
  • Loading branch information
Uwe Kleine-König authored and Sascha Hauer committed Oct 1, 2010
1 parent 6c80ee5 commit 214b431
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/arm/mach-imx/pcm970-baseboard.c
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ static struct resource pcm970_sja1000_resources[] = {
},
};

struct sja1000_platform_data pcm970_sja1000_platform_data = {
static struct sja1000_platform_data pcm970_sja1000_platform_data = {
.osc_freq = 16000000,
.ocr = OCR_TX1_PULLDOWN | OCR_TX0_PUSHPULL,
.cdr = CDR_CBP,
Expand Down

0 comments on commit 214b431

Please sign in to comment.