diff options
author | Len Brown <len.brown@intel.com> | 2008-10-22 23:33:29 -0400 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2008-10-22 23:33:29 -0400 |
commit | 7674416db4ee3d43813dddb650364ca994755256 (patch) | |
tree | 1a4549823d7bdd892dc3b3b7b3fa9214216ac384 /drivers/acpi/dock.c | |
parent | 0ca9413c234aa5a49ffaf80e46b50721a752e45a (diff) | |
parent | 27663c5855b10af9ec67bc7dfba001426ba21222 (diff) |
Merge branch 'ull' into test
Conflicts:
drivers/acpi/bay.c
drivers/acpi/dock.c
drivers/ata/libata-acpi.c
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/acpi/dock.c')
-rw-r--r-- | drivers/acpi/dock.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/acpi/dock.c b/drivers/acpi/dock.c index 913bb1e89dd6..5b30b8d91d71 100644 --- a/drivers/acpi/dock.c +++ b/drivers/acpi/dock.c | |||
@@ -294,7 +294,7 @@ EXPORT_SYMBOL_GPL(is_dock_device); | |||
294 | */ | 294 | */ |
295 | static int dock_present(struct dock_station *ds) | 295 | static int dock_present(struct dock_station *ds) |
296 | { | 296 | { |
297 | unsigned long sta; | 297 | unsigned long long sta; |
298 | acpi_status status; | 298 | acpi_status status; |
299 | 299 | ||
300 | if (ds) { | 300 | if (ds) { |
@@ -900,7 +900,7 @@ static DEVICE_ATTR(undock, S_IWUSR, NULL, write_undock); | |||
900 | static ssize_t show_dock_uid(struct device *dev, | 900 | static ssize_t show_dock_uid(struct device *dev, |
901 | struct device_attribute *attr, char *buf) | 901 | struct device_attribute *attr, char *buf) |
902 | { | 902 | { |
903 | unsigned long lbuf; | 903 | unsigned long long lbuf; |
904 | struct dock_station *dock_station = *((struct dock_station **) | 904 | struct dock_station *dock_station = *((struct dock_station **) |
905 | dev->platform_data); | 905 | dev->platform_data); |
906 | acpi_status status = acpi_evaluate_integer(dock_station->handle, | 906 | acpi_status status = acpi_evaluate_integer(dock_station->handle, |
@@ -908,7 +908,7 @@ static ssize_t show_dock_uid(struct device *dev, | |||
908 | if (ACPI_FAILURE(status)) | 908 | if (ACPI_FAILURE(status)) |
909 | return 0; | 909 | return 0; |
910 | 910 | ||
911 | return snprintf(buf, PAGE_SIZE, "%lx\n", lbuf); | 911 | return snprintf(buf, PAGE_SIZE, "%llx\n", lbuf); |
912 | } | 912 | } |
913 | static DEVICE_ATTR(uid, S_IRUGO, show_dock_uid, NULL); | 913 | static DEVICE_ATTR(uid, S_IRUGO, show_dock_uid, NULL); |
914 | 914 | ||