diff options
author | Anton Vorontsov <avorontsov@ru.mvista.com> | 2008-09-23 06:12:19 -0400 |
---|---|---|
committer | Grant Likely <grant.likely@secretlab.ca> | 2008-10-08 13:37:51 -0400 |
commit | 4c3ed7d61bd474380e0d3e1eb0da164942f7c84e (patch) | |
tree | c45385f8f2ebf200dc19624e2b4fcd556a109429 | |
parent | e92350463891a20960e858ef6137aa456e616175 (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.
[1] http://www.mail-archive.com/linuxppc-dev@ozlabs.org/msg21196.html
[2] http://www.nabble.com/-PATCH-1-2--i2c:-expand-I2C's-id.name-to-23-characters-td19577063.html
Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
-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 ad8ac1a8af28..a7264644003f 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 | /** |