Skip to content

Commit

Permalink
power/reset: vexpress: Remove non-DT code
Browse files Browse the repository at this point in the history
Now, as all VE platforms have to be booted with DT,
the code handling non-DT case can be removed.

Signed-off-by: Pawel Moll <[email protected]>
Signed-off-by: Sebastian Reichel <[email protected]>
  • Loading branch information
pawelmoll authored and sre committed Jan 21, 2015
1 parent f8f847b commit 8f961c0
Showing 1 changed file with 3 additions and 14 deletions.
17 changes: 3 additions & 14 deletions drivers/power/reset/vexpress-poweroff.c
Original file line number Diff line number Diff line change
Expand Up @@ -111,23 +111,20 @@ static int _vexpress_register_restart_handler(struct device *dev)

static int vexpress_reset_probe(struct platform_device *pdev)
{
enum vexpress_reset_func func;
const struct of_device_id *match =
of_match_device(vexpress_reset_of_match, &pdev->dev);
struct regmap *regmap;
int ret = 0;

if (match)
func = (enum vexpress_reset_func)match->data;
else
func = pdev->id_entry->driver_data;
if (!match)
return -EINVAL;

regmap = devm_regmap_init_vexpress_config(&pdev->dev);
if (IS_ERR(regmap))
return PTR_ERR(regmap);
dev_set_drvdata(&pdev->dev, regmap);

switch (func) {
switch ((enum vexpress_reset_func)match->data) {
case FUNC_SHUTDOWN:
vexpress_power_off_device = &pdev->dev;
pm_power_off = vexpress_power_off;
Expand All @@ -144,20 +141,12 @@ static int vexpress_reset_probe(struct platform_device *pdev)
return ret;
}

static const struct platform_device_id vexpress_reset_id_table[] = {
{ .name = "vexpress-reset", .driver_data = FUNC_RESET, },
{ .name = "vexpress-shutdown", .driver_data = FUNC_SHUTDOWN, },
{ .name = "vexpress-reboot", .driver_data = FUNC_REBOOT, },
{}
};

static struct platform_driver vexpress_reset_driver = {
.probe = vexpress_reset_probe,
.driver = {
.name = "vexpress-reset",
.of_match_table = vexpress_reset_of_match,
},
.id_table = vexpress_reset_id_table,
};

static int __init vexpress_reset_init(void)
Expand Down

0 comments on commit 8f961c0

Please sign in to comment.