Lines Matching refs:t
62 struct tag_pstore t;
76 t.version = 0;
79 t.buf[i].addr = addr;
80 t.buf[i].size = size;
82 t.buf[i].addr = 0x0;
83 t.buf[i].size = 0x0;
87 atags_set_tag(ATAG_PSTORE, &t);
96 struct tag *t; in param_parse_pstore() local
101 t = atags_get_tag(ATAG_PSTORE); in param_parse_pstore()
102 if (t) { in param_parse_pstore()
103 gd->pstore_addr = t->u.pstore.buf[LOG_UBOOT].addr; in param_parse_pstore()
104 gd->pstore_size = t->u.pstore.buf[LOG_UBOOT].size - sizeof(struct persistent_ram_buffer); in param_parse_pstore()