Merge branches 'armv7', 'at91', 'misc' and 'omap' into devel

This commit is contained in:
Russell King
2007-05-09 10:41:28 +01:00
committed by Russell King
67 changed files with 2704 additions and 975 deletions

View File

@@ -93,8 +93,12 @@ static const void *get_config(u16 tag, size_t len, int skip, size_t *len_out)
* in the kernel. */
for (i = 0; i < omap_board_config_size; i++) {
if (omap_board_config[i].tag == tag) {
kinfo = &omap_board_config[i];
break;
if (skip == 0) {
kinfo = &omap_board_config[i];
break;
} else {
skip--;
}
}
}
if (kinfo == NULL)