Lines Matching refs:res
26 struct resource res; in cnb20le_res() local
53 res.start = (word1 << 16) | 0x0000; in cnb20le_res()
54 res.end = (word2 << 16) | 0xffff; in cnb20le_res()
55 res.flags = IORESOURCE_MEM; in cnb20le_res()
56 update_res(info, res.start, res.end, res.flags, 0); in cnb20le_res()
63 res.start = ((resource_size_t) word1 << 16) | 0x0000; in cnb20le_res()
64 res.end = ((resource_size_t) word2 << 16) | 0xffff; in cnb20le_res()
65 res.flags = IORESOURCE_MEM | IORESOURCE_PREFETCH; in cnb20le_res()
66 update_res(info, res.start, res.end, res.flags, 0); in cnb20le_res()
73 res.start = word1; in cnb20le_res()
74 res.end = word2; in cnb20le_res()
75 res.flags = IORESOURCE_IO; in cnb20le_res()
76 update_res(info, res.start, res.end, res.flags, 0); in cnb20le_res()
80 res.start = fbus; in cnb20le_res()
81 res.end = lbus; in cnb20le_res()
82 res.flags = IORESOURCE_BUS; in cnb20le_res()
83 printk(KERN_INFO "CNB20LE PCI Host Bridge (domain 0000 %pR)\n", &res); in cnb20le_res()
86 printk(KERN_INFO "host bridge window %pR\n", &root_res->res); in cnb20le_res()