Skip to content

Commit

Permalink
Staging: ipack: Choose the optimum bus speed by default.
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Jens Taprogge authored and Greg Kroah-Hartman committed Sep 11, 2012
1 parent 0b0f3a1 commit 90cb619
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions drivers/staging/ipack/ipack.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 90cb619

Please sign in to comment.