diff options
author | Nicolin Chen <b42378@freescale.com> | 2013-08-29 02:35:44 -0400 |
---|---|---|
committer | Nitin Garg <nitin.garg@freescale.com> | 2014-04-16 09:01:32 -0400 |
commit | 23e369b88b546d7b699ca9ec46e195a05c61b717 (patch) | |
tree | f74888848ff4820b2c650b418990b11591d71aa5 | |
parent | 5ff35f4e6d12accdbb95f3086f15da9c03fe750b (diff) |
ENGR00276567-6 mfd: si476x: Use default configuration when no platform data
This would allow the driver to work normally without specific platform data,
when using devicetree for example.
Signed-off-by: Nicolin Chen <b42378@freescale.com>
-rw-r--r-- | drivers/mfd/si476x-i2c.c | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/drivers/mfd/si476x-i2c.c b/drivers/mfd/si476x-i2c.c index e2773cb7ef43..5f3f07f71e16 100644 --- a/drivers/mfd/si476x-i2c.c +++ b/drivers/mfd/si476x-i2c.c | |||
@@ -740,8 +740,15 @@ static int si476x_core_probe(struct i2c_client *client, | |||
740 | memcpy(&core->pinmux, &pdata->pinmux, | 740 | memcpy(&core->pinmux, &pdata->pinmux, |
741 | sizeof(struct si476x_pinmux)); | 741 | sizeof(struct si476x_pinmux)); |
742 | } else { | 742 | } else { |
743 | dev_err(&client->dev, "No platform data provided\n"); | 743 | dev_warn(&client->dev, "Using default platform data.\n"); |
744 | return -EINVAL; | 744 | core->power_up_parameters.xcload = 0x28; |
745 | core->power_up_parameters.func = SI476X_FUNC_FM_RECEIVER; | ||
746 | core->power_up_parameters.freq = SI476X_FREQ_37P209375_MHZ; | ||
747 | core->diversity_mode = SI476X_PHDIV_DISABLED; | ||
748 | core->pinmux.dclk = SI476X_DCLK_DAUDIO; | ||
749 | core->pinmux.dfs = SI476X_DFS_DAUDIO; | ||
750 | core->pinmux.dout = SI476X_DOUT_I2S_OUTPUT; | ||
751 | core->pinmux.xout = SI476X_XOUT_TRISTATE; | ||
745 | } | 752 | } |
746 | 753 | ||
747 | core->supplies[0].supply = "vd"; | 754 | core->supplies[0].supply = "vd"; |