search for: acpi_bus_scan

Displaying 3 results from an estimated 3 matches for "acpi_bus_scan".

2013 Feb 15
1
xen/acpi: ACPI memory hotplug
...ndle, &pdevice); 182 if (result) { 183 pr_warn(PREFIX "Cannot get acpi bus device\n"); 184 return -EINVAL; 185 } 186 187 /* 188 * Now add the notified device. This creates the acpi_device 189 * and invokes .add function 190 */ 191 result = acpi_bus_scan(handle); 192 if (result) { 193 pr_warn(PREFIX "Cannot add acpi bus\n"); 194 return -EINVAL; 195 } 196 197 end: 198 *mem_device = acpi_driver_data(device); ^^^^^^ Dereference. 199 if (!(*mem_device)) { 200...
2013 Feb 15
1
xen/acpi: ACPI memory hotplug
...ndle, &pdevice); 182 if (result) { 183 pr_warn(PREFIX "Cannot get acpi bus device\n"); 184 return -EINVAL; 185 } 186 187 /* 188 * Now add the notified device. This creates the acpi_device 189 * and invokes .add function 190 */ 191 result = acpi_bus_scan(handle); 192 if (result) { 193 pr_warn(PREFIX "Cannot add acpi bus\n"); 194 return -EINVAL; 195 } 196 197 end: 198 *mem_device = acpi_driver_data(device); ^^^^^^ Dereference. 199 if (!(*mem_device)) { 200...
2013 Feb 15
0
RE: linux-next: build failure after merge of the xen-two tree
...be left up > to when the latter of the two tress is merged by Linus. Per my understanding, currently in git://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git, it has included 1). 636458de36f1, 0cd6ac52b333, b8bd759acd05: from pm tree (Rafael), drop acpi_bus_add, update argument of acpi_bus_scan 2). 259f201cb7ea, 181232c249f0: from xen tree (Jinsong), use acpi_bus_add 3). 36bd3c64bfe2 Stephen fix confliction of 1) and 2) Currently these are only some compiling warning left, so the only thing need to do is to add my patch to fix compile warning (just sent out minutes ago) to the top o...