Lines Matching full:cfg

19 	struct config_item cfg;  member
24 static ssize_t acpi_table_aml_write(struct config_item *cfg, in acpi_table_aml_write() argument
34 table = container_of(cfg, struct acpi_table, cfg); in acpi_table_aml_write()
51 table = container_of(cfg, struct acpi_table, cfg); in acpi_table_aml_write()
66 static inline struct acpi_table_header *get_header(struct config_item *cfg) in get_header() argument
68 struct acpi_table *table = container_of(cfg, struct acpi_table, cfg); in get_header()
76 static ssize_t acpi_table_aml_read(struct config_item *cfg, in acpi_table_aml_read() argument
79 struct acpi_table_header *h = get_header(cfg); in acpi_table_aml_read()
99 static ssize_t acpi_table_signature_show(struct config_item *cfg, char *str) in acpi_table_signature_show() argument
101 struct acpi_table_header *h = get_header(cfg); in acpi_table_signature_show()
109 static ssize_t acpi_table_length_show(struct config_item *cfg, char *str) in acpi_table_length_show() argument
111 struct acpi_table_header *h = get_header(cfg); in acpi_table_length_show()
119 static ssize_t acpi_table_revision_show(struct config_item *cfg, char *str) in acpi_table_revision_show() argument
121 struct acpi_table_header *h = get_header(cfg); in acpi_table_revision_show()
129 static ssize_t acpi_table_oem_id_show(struct config_item *cfg, char *str) in acpi_table_oem_id_show() argument
131 struct acpi_table_header *h = get_header(cfg); in acpi_table_oem_id_show()
139 static ssize_t acpi_table_oem_table_id_show(struct config_item *cfg, char *str) in acpi_table_oem_table_id_show() argument
141 struct acpi_table_header *h = get_header(cfg); in acpi_table_oem_table_id_show()
149 static ssize_t acpi_table_oem_revision_show(struct config_item *cfg, char *str) in acpi_table_oem_revision_show() argument
151 struct acpi_table_header *h = get_header(cfg); in acpi_table_oem_revision_show()
159 static ssize_t acpi_table_asl_compiler_id_show(struct config_item *cfg, in acpi_table_asl_compiler_id_show() argument
162 struct acpi_table_header *h = get_header(cfg); in acpi_table_asl_compiler_id_show()
170 static ssize_t acpi_table_asl_compiler_revision_show(struct config_item *cfg, in acpi_table_asl_compiler_revision_show() argument
173 struct acpi_table_header *h = get_header(cfg); in acpi_table_asl_compiler_revision_show()
217 config_item_init_type_name(&table->cfg, name, &acpi_table_type); in acpi_table_make_item()
218 return &table->cfg; in acpi_table_make_item()
222 struct config_item *cfg) in acpi_table_drop_item() argument
224 struct acpi_table *table = container_of(cfg, struct acpi_table, cfg); in acpi_table_drop_item()
228 config_item_put(cfg); in acpi_table_drop_item()