|
@@ -210,27 +210,21 @@ static struct pcmcia_low_level lubbock_pcmcia_ops = {
|
|
|
|
|
|
int pcmcia_lubbock_init(struct sa1111_dev *sadev)
|
|
|
{
|
|
|
- int ret = -ENODEV;
|
|
|
-
|
|
|
- if (machine_is_lubbock()) {
|
|
|
- /*
|
|
|
- * Set GPIO_A<3:0> to be outputs for the MAX1600,
|
|
|
- * and switch to standby mode.
|
|
|
- */
|
|
|
- sa1111_set_io_dir(sadev, GPIO_A0|GPIO_A1|GPIO_A2|GPIO_A3, 0, 0);
|
|
|
- sa1111_set_io(sadev, GPIO_A0|GPIO_A1|GPIO_A2|GPIO_A3, 0);
|
|
|
- sa1111_set_sleep_io(sadev, GPIO_A0|GPIO_A1|GPIO_A2|GPIO_A3, 0);
|
|
|
-
|
|
|
- /* Set CF Socket 1 power to standby mode. */
|
|
|
- lubbock_set_misc_wr((1 << 15) | (1 << 14), 0);
|
|
|
+ /*
|
|
|
+ * Set GPIO_A<3:0> to be outputs for the MAX1600,
|
|
|
+ * and switch to standby mode.
|
|
|
+ */
|
|
|
+ sa1111_set_io_dir(sadev, GPIO_A0|GPIO_A1|GPIO_A2|GPIO_A3, 0, 0);
|
|
|
+ sa1111_set_io(sadev, GPIO_A0|GPIO_A1|GPIO_A2|GPIO_A3, 0);
|
|
|
+ sa1111_set_sleep_io(sadev, GPIO_A0|GPIO_A1|GPIO_A2|GPIO_A3, 0);
|
|
|
|
|
|
- pxa2xx_drv_pcmcia_ops(&lubbock_pcmcia_ops);
|
|
|
- pxa2xx_configure_sockets(&sadev->dev);
|
|
|
- ret = sa1111_pcmcia_add(sadev, &lubbock_pcmcia_ops,
|
|
|
- pxa2xx_drv_pcmcia_add_one);
|
|
|
- }
|
|
|
+ /* Set CF Socket 1 power to standby mode. */
|
|
|
+ lubbock_set_misc_wr((1 << 15) | (1 << 14), 0);
|
|
|
|
|
|
- return ret;
|
|
|
+ pxa2xx_drv_pcmcia_ops(&lubbock_pcmcia_ops);
|
|
|
+ pxa2xx_configure_sockets(&sadev->dev);
|
|
|
+ return sa1111_pcmcia_add(sadev, &lubbock_pcmcia_ops,
|
|
|
+ pxa2xx_drv_pcmcia_add_one);
|
|
|
}
|
|
|
|
|
|
MODULE_LICENSE("GPL");
|