scan.c (23a2f39c8f4035eade7f226eb7ada30c78d9eee3) scan.c (1716bcf3f76fe71e98d4851a3eb73ea3d93d4773)
1/*
2 * Broadcom specific AMBA
3 * Bus scanning
4 *
5 * Licensed under the GNU/GPL. See COPYING for details.
6 */
7
8#include "scan.h"

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

309 return -ENXIO;
310 }
311
312 /* check if component is a core at all */
313 if (wrappers[0] + wrappers[1] == 0) {
314 /* Some specific cores don't need wrappers */
315 switch (core->id.id) {
316 case BCMA_CORE_4706_MAC_GBIT_COMMON:
1/*
2 * Broadcom specific AMBA
3 * Bus scanning
4 *
5 * Licensed under the GNU/GPL. See COPYING for details.
6 */
7
8#include "scan.h"

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

309 return -ENXIO;
310 }
311
312 /* check if component is a core at all */
313 if (wrappers[0] + wrappers[1] == 0) {
314 /* Some specific cores don't need wrappers */
315 switch (core->id.id) {
316 case BCMA_CORE_4706_MAC_GBIT_COMMON:
317 case BCMA_CORE_NS_CHIPCOMMON_B:
317 /* Not used yet: case BCMA_CORE_OOB_ROUTER: */
318 break;
319 default:
320 bcma_erom_skip_component(bus, eromptr);
321 return -ENXIO;
322 }
323 }
324

--- 252 unchanged lines hidden ---
318 /* Not used yet: case BCMA_CORE_OOB_ROUTER: */
319 break;
320 default:
321 bcma_erom_skip_component(bus, eromptr);
322 return -ENXIO;
323 }
324 }
325

--- 252 unchanged lines hidden ---