|
@@ -855,10 +855,14 @@ fdd_out:
|
|
static ssize_t show_docked(struct device *dev,
|
|
static ssize_t show_docked(struct device *dev,
|
|
struct device_attribute *attr, char *buf)
|
|
struct device_attribute *attr, char *buf)
|
|
{
|
|
{
|
|
|
|
+ struct acpi_device *tmp;
|
|
|
|
+
|
|
struct dock_station *dock_station = *((struct dock_station **)
|
|
struct dock_station *dock_station = *((struct dock_station **)
|
|
dev->platform_data);
|
|
dev->platform_data);
|
|
- return snprintf(buf, PAGE_SIZE, "%d\n", dock_present(dock_station));
|
|
|
|
|
|
|
|
|
|
+ if (ACPI_SUCCESS(acpi_bus_get_device(dock_station->handle, &tmp)))
|
|
|
|
+ return snprintf(buf, PAGE_SIZE, "1\n");
|
|
|
|
+ return snprintf(buf, PAGE_SIZE, "0\n");
|
|
}
|
|
}
|
|
static DEVICE_ATTR(docked, S_IRUGO, show_docked, NULL);
|
|
static DEVICE_ATTR(docked, S_IRUGO, show_docked, NULL);
|
|
|
|
|