[SCONFIG] remove unused variable in inherit_subsystem_ids()
i is a leftover from debugging, no longer needed. So just remove it. Signed-off-by: Sylvain "ythier" Hitier <sylvain.hitier@gmail.com> Acked-by: Sven Schnelle <svens@stackframe.org> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6424 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
b8269e2111
commit
5325a48340
|
@ -415,14 +415,13 @@ static void walk_device_tree(FILE *fil, struct device *ptr, void (*func)(FILE *,
|
|||
static void inherit_subsystem_ids(FILE *file, struct device *dev)
|
||||
{
|
||||
struct device *p;
|
||||
int i =0;
|
||||
|
||||
if (dev->subsystem_vendor != -1 && dev->subsystem_device != -1) {
|
||||
/* user already gave us a subsystem vendor/device */
|
||||
return;
|
||||
}
|
||||
|
||||
for(p = dev; p && p != p->parent; (p = p->parent), i++) {
|
||||
for(p = dev; p && p != p->parent; p = p->parent) {
|
||||
|
||||
if (p->bustype != PCI && p->bustype != PCI_DOMAIN)
|
||||
continue;
|
||||
|
|
Loading…
Reference in New Issue