diff options
author | Anton Vorontsov <avorontsov@ru.mvista.com> | 2009-08-19 02:23:35 +0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2009-09-23 06:46:37 -0700 |
commit | 04c4ab17c7c39603c5017bee20d3b8ccb2f19816 (patch) | |
tree | b64240326a0c5875669a09a98275abf7700fc31a /drivers/usb | |
parent | 29cf1b72f34519413b3fafbccc9ac776eb948ede (diff) | |
download | linux-3.10-04c4ab17c7c39603c5017bee20d3b8ccb2f19816.tar.gz linux-3.10-04c4ab17c7c39603c5017bee20d3b8ccb2f19816.tar.bz2 linux-3.10-04c4ab17c7c39603c5017bee20d3b8ccb2f19816.zip |
USB: fsl_qe_udc: Add fsl,mpc8323-qe-usb compatible entry
Current bindings specify that "fsl,mpc8323-qe-usb" compatible entry
should be used as a base match for QE UDCs, so update the driver to
comply with the bindings.
Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
Cc: David Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb')
-rw-r--r-- | drivers/usb/gadget/fsl_qe_udc.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/usb/gadget/fsl_qe_udc.c b/drivers/usb/gadget/fsl_qe_udc.c index d701bf4698d..7881f12413c 100644 --- a/drivers/usb/gadget/fsl_qe_udc.c +++ b/drivers/usb/gadget/fsl_qe_udc.c @@ -2751,6 +2751,10 @@ static int __devexit qe_udc_remove(struct of_device *ofdev) /*-------------------------------------------------------------------------*/ static struct of_device_id __devinitdata qe_udc_match[] = { { + .compatible = "fsl,mpc8323-qe-usb", + .data = (void *)PORT_QE, + }, + { .compatible = "fsl,mpc8360-qe-usb", .data = (void *)PORT_QE, }, |