diff options
Diffstat (limited to 'arch/ia64')
-rw-r--r-- | arch/ia64/hp/sim/simscsi.c | 9 | ||||
-rw-r--r-- | arch/ia64/kernel/cpufreq/acpi-cpufreq.c | 2 | ||||
-rw-r--r-- | arch/ia64/sn/kernel/tiocx.c | 3 |
3 files changed, 8 insertions, 6 deletions
diff --git a/arch/ia64/hp/sim/simscsi.c b/arch/ia64/hp/sim/simscsi.c index 4552a1cf5b33..d62fa76e5a7d 100644 --- a/arch/ia64/hp/sim/simscsi.c +++ b/arch/ia64/hp/sim/simscsi.c | |||
@@ -372,8 +372,13 @@ simscsi_init(void) | |||
372 | return -ENOMEM; | 372 | return -ENOMEM; |
373 | 373 | ||
374 | error = scsi_add_host(host, NULL); | 374 | error = scsi_add_host(host, NULL); |
375 | if (!error) | 375 | if (error) |
376 | scsi_scan_host(host); | 376 | goto free_host; |
377 | scsi_scan_host(host); | ||
378 | return 0; | ||
379 | |||
380 | free_host: | ||
381 | scsi_host_put(host); | ||
377 | return error; | 382 | return error; |
378 | } | 383 | } |
379 | 384 | ||
diff --git a/arch/ia64/kernel/cpufreq/acpi-cpufreq.c b/arch/ia64/kernel/cpufreq/acpi-cpufreq.c index 8c6ec7070844..b8498ea62068 100644 --- a/arch/ia64/kernel/cpufreq/acpi-cpufreq.c +++ b/arch/ia64/kernel/cpufreq/acpi-cpufreq.c | |||
@@ -321,8 +321,6 @@ acpi_cpufreq_cpu_init ( | |||
321 | data->acpi_data.states[i].transition_latency * 1000; | 321 | data->acpi_data.states[i].transition_latency * 1000; |
322 | } | 322 | } |
323 | } | 323 | } |
324 | policy->governor = CPUFREQ_DEFAULT_GOVERNOR; | ||
325 | |||
326 | policy->cur = processor_get_freq(data, policy->cpu); | 324 | policy->cur = processor_get_freq(data, policy->cpu); |
327 | 325 | ||
328 | /* table init */ | 326 | /* table init */ |
diff --git a/arch/ia64/sn/kernel/tiocx.c b/arch/ia64/sn/kernel/tiocx.c index 5a289e4de838..a88eba3314d7 100644 --- a/arch/ia64/sn/kernel/tiocx.c +++ b/arch/ia64/sn/kernel/tiocx.c | |||
@@ -66,8 +66,7 @@ static int tiocx_match(struct device *dev, struct device_driver *drv) | |||
66 | 66 | ||
67 | } | 67 | } |
68 | 68 | ||
69 | static int tiocx_uevent(struct device *dev, char **envp, int num_envp, | 69 | static int tiocx_uevent(struct device *dev, struct kobj_uevent_env *env) |
70 | char *buffer, int buffer_size) | ||
71 | { | 70 | { |
72 | return -ENODEV; | 71 | return -ENODEV; |
73 | } | 72 | } |