Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 6101 → Rev 6102

/drivers/include/linux/ioport.h
23,12 → 23,6
struct resource *parent, *sibling, *child;
};
 
struct resource_list {
struct resource_list *next;
struct resource *res;
struct pci_dev *dev;
};
 
/*
* IO resources have these defined flags.
*/
176,6 → 170,15
{
return res->flags & IORESOURCE_TYPE_BITS;
}
/* True iff r1 completely contains r2 */
static inline bool resource_contains(struct resource *r1, struct resource *r2)
{
if (resource_type(r1) != resource_type(r2))
return false;
if (r1->flags & IORESOURCE_UNSET || r2->flags & IORESOURCE_UNSET)
return false;
return r1->start <= r2->start && r1->end >= r2->end;
}
 
 
#endif /* __ASSEMBLY__ */