mirror of
https://github.com/torvalds/linux.git
synced 2026-09-24 06:24:02 +02:00
ASoC: renesas: fsi: Drop platform probing metadata
Since commit 38d3273075 ("ASoC: renesas: fsi: remove platform data
style support") probing using the traditional platform bus matching
isn't supported any more.
Drop the platform_device_id entries that should have been removed in the
above commit. Note that keeping the empty array results in the driver
not matching on "fsi-pcm-audio" (i.e. the driver name).
While touching that array, use a single space and no trailing comma for
the list terminator, which is the most used style for this.
Signed-off-by: Uwe Kleine-König (The Capable Hub) <u.kleine-koenig@baylibre.com>
Link: https://patch.msgid.link/c79fa0d31abc0c80fbd7b4ec94d95b197ddb9f94.1784528081.git.u.kleine-koenig@baylibre.com
Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
c7a6909de8
commit
0ca8f65516
|
|
@ -1979,8 +1979,8 @@ static const struct of_device_id fsi_of_match[] = {
|
|||
MODULE_DEVICE_TABLE(of, fsi_of_match);
|
||||
|
||||
static const struct platform_device_id fsi_id_table[] = {
|
||||
{ "sh_fsi", (kernel_ulong_t)&fsi1_core },
|
||||
{},
|
||||
/* an array with no valid entry prevents matching on driver name */
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(platform, fsi_id_table);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user