diff options
author | Anton Vorontsov <avorontsov@ru.mvista.com> | 2008-09-23 10:12:19 -0400 |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2008-10-13 12:09:59 -0400 |
commit | 7e7385ce4115830bf5e0b43d62087a94871b78de (patch) | |
tree | 9b23f308fa2ea48231210353a43ea5b01caf6cd7 | |
parent | 8b77aeb4f52fca39e647159d87da3566f64ce30a (diff) |
OF: add fsl,mcu-mpc8349emitx to the exception list
of/base.c matches on the first (most specific) entries, which isn't
quite practical but it was discussed[1] that this won't change.
The bindings specifies verbose information for the devices, but
it doesn't fit in the I2C ID's 20 characters limit. The limit won't
change[2], and the bindings won't change either as they're correct.
So we have to put an exception for the MPC8349E-mITX-compatible
MCUs.
Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
-rw-r--r-- | drivers/of/base.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/of/base.c b/drivers/of/base.c index 4270eb4a26a1..7c79e94a35ea 100644 --- a/drivers/of/base.c +++ b/drivers/of/base.c | |||
@@ -410,7 +410,7 @@ struct of_modalias_table { | |||
410 | char *modalias; | 410 | char *modalias; |
411 | }; | 411 | }; |
412 | static struct of_modalias_table of_modalias_table[] = { | 412 | static struct of_modalias_table of_modalias_table[] = { |
413 | /* Empty for now; add entries as needed */ | 413 | { "fsl,mcu-mpc8349emitx", "mcu-mpc8349emitx" }, |
414 | }; | 414 | }; |
415 | 415 | ||
416 | /** | 416 | /** |