Skip to content

Commit

Permalink
ACPICA: Update for new gcc-4 warning options
Browse files Browse the repository at this point in the history
Added several new options for the gcc-4 generation, and updated
the source accordingly. This includes some code restructuring to
eliminate unreachable code, elimination of some gotos, elimination
of unused return values, and some additional casting.

Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Lin Ming <ming.m.lin@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
  • Loading branch information
Bob Moore authored and Len Brown committed Jan 22, 2010
1 parent 92dcffb commit 2147d3f
Show file tree
Hide file tree
Showing 6 changed files with 32 additions and 55 deletions.
13 changes: 5 additions & 8 deletions drivers/acpi/acpica/exconfig.c
Original file line number Diff line number Diff line change
Expand Up @@ -490,7 +490,11 @@ acpi_ex_load_op(union acpi_operand_object *obj_desc,

status = acpi_tb_add_table(&table_desc, &table_index);
if (ACPI_FAILURE(status)) {
goto cleanup;

/* Delete allocated table buffer */

acpi_tb_delete_table(&table_desc);
return_ACPI_STATUS(status);
}

/*
Expand Down Expand Up @@ -533,13 +537,6 @@ acpi_ex_load_op(union acpi_operand_object *obj_desc,
acpi_gbl_table_handler_context);
}

cleanup:
if (ACPI_FAILURE(status)) {

/* Delete allocated table buffer */

acpi_tb_delete_table(&table_desc);
}
return_ACPI_STATUS(status);
}

Expand Down
6 changes: 2 additions & 4 deletions drivers/acpi/acpica/hwgpe.c
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ acpi_hw_get_gpe_status(struct acpi_gpe_event_info * gpe_event_info,

status = acpi_hw_read(&in_byte, &gpe_register_info->status_address);
if (ACPI_FAILURE(status)) {
goto unlock_and_exit;
return (status);
}

if (register_bit & in_byte) {
Expand All @@ -234,9 +234,7 @@ acpi_hw_get_gpe_status(struct acpi_gpe_event_info * gpe_event_info,
/* Set return value */

(*event_status) = local_event_status;

unlock_and_exit:
return (status);
return (AE_OK);
}

/******************************************************************************
Expand Down
24 changes: 11 additions & 13 deletions drivers/acpi/acpica/nspredef.c
Original file line number Diff line number Diff line change
Expand Up @@ -1000,27 +1000,25 @@ acpi_ns_check_object_type(struct acpi_predefined_data *data,

/* Is the object one of the expected types? */

if (!(return_btype & expected_btypes)) {
if (return_btype & expected_btypes) {

/* Type mismatch -- attempt repair of the returned object */
/* For reference objects, check that the reference type is correct */

status = acpi_ns_repair_object(data, expected_btypes,
package_index,
return_object_ptr);
if (ACPI_SUCCESS(status)) {
return (AE_OK); /* Repair was successful */
if (return_object->common.type == ACPI_TYPE_LOCAL_REFERENCE) {
status = acpi_ns_check_reference(data, return_object);
}
goto type_error_exit;

return (status);
}

/* For reference objects, check that the reference type is correct */
/* Type mismatch -- attempt repair of the returned object */

if (return_object->common.type == ACPI_TYPE_LOCAL_REFERENCE) {
status = acpi_ns_check_reference(data, return_object);
status = acpi_ns_repair_object(data, expected_btypes,
package_index, return_object_ptr);
if (ACPI_SUCCESS(status)) {
return (AE_OK); /* Repair was successful */
}

return (status);

type_error_exit:

/* Create a string with all expected types for this predefined object */
Expand Down
24 changes: 9 additions & 15 deletions drivers/acpi/acpica/nsrepair2.c
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ acpi_ns_check_sorted_list(struct acpi_predefined_data *data,
u32 sort_index,
u8 sort_direction, char *sort_key_name);

static acpi_status
static void
acpi_ns_sort_list(union acpi_operand_object **elements,
u32 count, u32 index, u8 sort_direction);

Expand Down Expand Up @@ -443,7 +443,6 @@ acpi_ns_check_sorted_list(struct acpi_predefined_data *data,
union acpi_operand_object *obj_desc;
u32 i;
u32 previous_value;
acpi_status status;

ACPI_FUNCTION_NAME(ns_check_sorted_list);

Expand Down Expand Up @@ -494,19 +493,15 @@ acpi_ns_check_sorted_list(struct acpi_predefined_data *data,

/*
* The list must be sorted in the specified order. If we detect a
* discrepancy, issue a warning and sort the entire list
* discrepancy, sort the entire list.
*/
if (((sort_direction == ACPI_SORT_ASCENDING) &&
(obj_desc->integer.value < previous_value)) ||
((sort_direction == ACPI_SORT_DESCENDING) &&
(obj_desc->integer.value > previous_value))) {
status =
acpi_ns_sort_list(return_object->package.elements,
outer_element_count, sort_index,
sort_direction);
if (ACPI_FAILURE(status)) {
return (status);
}
acpi_ns_sort_list(return_object->package.elements,
outer_element_count, sort_index,
sort_direction);

data->flags |= ACPI_OBJECT_REPAIRED;

Expand Down Expand Up @@ -615,15 +610,16 @@ acpi_ns_remove_null_elements(struct acpi_predefined_data *data,
* Index - Sort by which package element
* sort_direction - Ascending or Descending sort
*
* RETURN: Status
* RETURN: None
*
* DESCRIPTION: Sort the objects that are in a package element list.
*
* NOTE: Assumes that all NULL elements have been removed from the package.
* NOTE: Assumes that all NULL elements have been removed from the package,
* and that all elements have been verified to be of type Integer.
*
*****************************************************************************/

static acpi_status
static void
acpi_ns_sort_list(union acpi_operand_object **elements,
u32 count, u32 index, u8 sort_direction)
{
Expand Down Expand Up @@ -652,6 +648,4 @@ acpi_ns_sort_list(union acpi_operand_object **elements,
}
}
}

return (AE_OK);
}
16 changes: 3 additions & 13 deletions drivers/acpi/acpica/utmutex.c
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ ACPI_MODULE_NAME("utmutex")
/* Local prototypes */
static acpi_status acpi_ut_create_mutex(acpi_mutex_handle mutex_id);

static acpi_status acpi_ut_delete_mutex(acpi_mutex_handle mutex_id);
static void acpi_ut_delete_mutex(acpi_mutex_handle mutex_id);

/*******************************************************************************
*
Expand Down Expand Up @@ -114,7 +114,7 @@ void acpi_ut_mutex_terminate(void)
/* Delete each predefined mutex object */

for (i = 0; i < ACPI_NUM_MUTEX; i++) {
(void)acpi_ut_delete_mutex(i);
acpi_ut_delete_mutex(i);
}

/* Delete the spinlocks */
Expand Down Expand Up @@ -146,10 +146,6 @@ static acpi_status acpi_ut_create_mutex(acpi_mutex_handle mutex_id)

ACPI_FUNCTION_TRACE_U32(ut_create_mutex, mutex_id);

if (mutex_id > ACPI_MAX_MUTEX) {
return_ACPI_STATUS(AE_BAD_PARAMETER);
}

if (!acpi_gbl_mutex_info[mutex_id].mutex) {
status =
acpi_os_create_mutex(&acpi_gbl_mutex_info[mutex_id].mutex);
Expand All @@ -173,21 +169,15 @@ static acpi_status acpi_ut_create_mutex(acpi_mutex_handle mutex_id)
*
******************************************************************************/

static acpi_status acpi_ut_delete_mutex(acpi_mutex_handle mutex_id)
static void acpi_ut_delete_mutex(acpi_mutex_handle mutex_id)
{

ACPI_FUNCTION_TRACE_U32(ut_delete_mutex, mutex_id);

if (mutex_id > ACPI_MAX_MUTEX) {
return_ACPI_STATUS(AE_BAD_PARAMETER);
}

acpi_os_delete_mutex(acpi_gbl_mutex_info[mutex_id].mutex);

acpi_gbl_mutex_info[mutex_id].mutex = NULL;
acpi_gbl_mutex_info[mutex_id].thread_id = ACPI_MUTEX_NOT_ACQUIRED;

return_ACPI_STATUS(AE_OK);
}

/*******************************************************************************
Expand Down
4 changes: 2 additions & 2 deletions include/acpi/platform/acenv.h
Original file line number Diff line number Diff line change
Expand Up @@ -311,8 +311,8 @@ typedef char *va_list;
#define ACPI_MEMCMP(s1,s2,n) acpi_ut_memcmp((const char *)(s1), (const char *)(s2), (acpi_size)(n))
#define ACPI_MEMCPY(d,s,n) (void) acpi_ut_memcpy ((d), (s), (acpi_size)(n))
#define ACPI_MEMSET(d,v,n) (void) acpi_ut_memset ((d), (v), (acpi_size)(n))
#define ACPI_TOUPPER acpi_ut_to_upper
#define ACPI_TOLOWER acpi_ut_to_lower
#define ACPI_TOUPPER(c) acpi_ut_to_upper ((int) (c))
#define ACPI_TOLOWER(c) acpi_ut_to_lower ((int) (c))

#endif /* ACPI_USE_SYSTEM_CLIBRARY */

Expand Down

0 comments on commit 2147d3f

Please sign in to comment.