Same conversion as with resources from static arrays to lists, except
there is no free list. Converting resource arrays to lists reduced the size of each device struct from 1092 to 228 bytes. Converting link arrays to lists reduced the size of each device struct from 228 to 68 bytes. Signed-off-by: Myles Watson <mylesgw@gmail.com> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5626 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
@ -34,7 +34,7 @@ static struct device_operations i2cmux_operations = {
|
||||
|
||||
static void enable_dev(struct device *dev)
|
||||
{
|
||||
if(dev->links>0)
|
||||
if(dev->link_list != NULL)
|
||||
dev->ops = &i2cmux_operations;
|
||||
}
|
||||
|
||||
|
@ -33,7 +33,7 @@ static struct device_operations i2cmux2_operations = {
|
||||
|
||||
static void enable_dev(struct device *dev)
|
||||
{
|
||||
if(dev->links>0)
|
||||
if(dev->link_list != NULL)
|
||||
dev->ops = &i2cmux2_operations;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user