ohci-ps3.c (908cf4b925e419bc74f3297b2f0e51d6f8a81da2) ohci-ps3.c (7071a3ce0ca058ad2a9e3e8c33f30fb0bce62005)
1/*
2 * PS3 OHCI Host Controller driver
3 *
4 * Copyright (C) 2006 Sony Computer Entertainment Inc.
5 * Copyright 2006 Sony Corp.
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by

--- 115 unchanged lines hidden (view full) ---

124 dev_dbg(&dev->core, "%s:%d: ps3_construct_io_irq(%d) failed.\n",
125 __func__, __LINE__, virq);
126 result = -EPERM;
127 goto fail_irq;
128 }
129
130 dev->core.dma_mask = &dummy_mask; /* FIXME: for improper usb code */
131
1/*
2 * PS3 OHCI Host Controller driver
3 *
4 * Copyright (C) 2006 Sony Computer Entertainment Inc.
5 * Copyright 2006 Sony Corp.
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by

--- 115 unchanged lines hidden (view full) ---

124 dev_dbg(&dev->core, "%s:%d: ps3_construct_io_irq(%d) failed.\n",
125 __func__, __LINE__, virq);
126 result = -EPERM;
127 goto fail_irq;
128 }
129
130 dev->core.dma_mask = &dummy_mask; /* FIXME: for improper usb code */
131
132 hcd = usb_create_hcd(&ps3_ohci_hc_driver, &dev->core, dev->core.bus_id);
132 hcd = usb_create_hcd(&ps3_ohci_hc_driver, &dev->core, dev_name(&dev->core));
133
134 if (!hcd) {
135 dev_dbg(&dev->core, "%s:%d: usb_create_hcd failed\n", __func__,
136 __LINE__);
137 result = -ENOMEM;
138 goto fail_create_hcd;
139 }
140

--- 110 unchanged lines hidden ---
133
134 if (!hcd) {
135 dev_dbg(&dev->core, "%s:%d: usb_create_hcd failed\n", __func__,
136 __LINE__);
137 result = -ENOMEM;
138 goto fail_create_hcd;
139 }
140

--- 110 unchanged lines hidden ---