1
0
Fork 0

Staging: ipack: Choose the optimum bus speed by default.

Signed-off-by: Jens Taprogge <jens.taprogge@taprogge.org>
Signed-off-by: Samuel Iglesias Gonsálvez <siglesias@igalia.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
hifive-unleashed-5.1
Jens Taprogge 2012-09-11 13:34:58 +02:00 committed by Greg Kroah-Hartman
parent 0b0f3a1bee
commit 90cb61948f
1 changed files with 5 additions and 0 deletions

View File

@ -387,6 +387,11 @@ struct ipack_device *ipack_device_register(struct ipack_bus_device *bus,
return NULL;
}
/* if the device supports 32 MHz operation, use it. */
ret = bus->ops->set_clockrate(dev, dev->speed_32mhz ? 32 : 8);
if (ret < 0)
dev_err(&dev->dev, "failed to perform set_clock_rate operation.\n");
ret = device_register(&dev->dev);
if (ret < 0) {
kfree(dev->id);