Skip to content

Commit

Permalink
ARM: ux500: Clean-up MSP platform code
Browse files Browse the repository at this point in the history
This patch contains a couple of general MSP clean-ups pertaining to
layout changes and changing functions to be void instead of int instead
of regardlessly returning '0'.

Acked-by: Ola Lilja <ola.o.lilja@stericsson.com>
Acked-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
  • Loading branch information
Lee Jones committed Sep 20, 2012
1 parent 9cf24b1 commit 65b67d3
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 23 deletions.
14 changes: 6 additions & 8 deletions arch/arm/mach-ux500/board-mop500-msp.c
Original file line number Diff line number Diff line change
Expand Up @@ -143,11 +143,11 @@ static struct platform_device *db8500_add_msp_i2s(struct device *parent,

/* Platform device for ASoC MOP500 machine */
static struct platform_device snd_soc_mop500 = {
.name = "snd-soc-mop500",
.id = 0,
.dev = {
.platform_data = NULL,
},
.name = "snd-soc-mop500",
.id = 0,
.dev = {
.platform_data = NULL,
},
};

/* Platform device for Ux500-PCM */
Expand All @@ -171,7 +171,7 @@ static struct msp_i2s_platform_data msp3_platform_data = {
.msp_i2s_dma_tx = NULL,
};

int mop500_msp_init(struct device *parent)
void mop500_msp_init(struct device *parent)
{
pr_info("%s: Register platform-device 'snd-soc-mop500'.\n", __func__);
platform_device_register(&snd_soc_mop500);
Expand All @@ -185,6 +185,4 @@ int mop500_msp_init(struct device *parent)
&msp2_platform_data);
db8500_add_msp_i2s(parent, 3, U8500_MSP3_BASE, IRQ_DB8500_MSP1,
&msp3_platform_data);

return 0;
}
14 changes: 0 additions & 14 deletions arch/arm/mach-ux500/board-mop500-msp.h

This file was deleted.

1 change: 0 additions & 1 deletion arch/arm/mach-ux500/board-mop500.c
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@
#include "devices-db8500.h"
#include "board-mop500.h"
#include "board-mop500-regulators.h"
#include "board-mop500-msp.h"

static struct gpio_led snowball_led_array[] = {
{
Expand Down
1 change: 1 addition & 0 deletions arch/arm/mach-ux500/board-mop500.h
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ void __init mop500_stuib_init(void);
void __init mop500_pinmaps_init(void);
void __init snowball_pinmaps_init(void);
void __init hrefv60_pinmaps_init(void);
void mop500_msp_init(struct device *parent);

int __init mop500_uib_init(void);
void mop500_uib_i2c_add(int busnum, struct i2c_board_info *info,
Expand Down

0 comments on commit 65b67d3

Please sign in to comment.