diff options
Diffstat (limited to 'drivers/acpi/acpica/utobject.c')
| -rw-r--r-- | drivers/acpi/acpica/utobject.c | 5 | 
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/acpi/acpica/utobject.c b/drivers/acpi/acpica/utobject.c index 1099f5c069f8..aa61f66ee861 100644 --- a/drivers/acpi/acpica/utobject.c +++ b/drivers/acpi/acpica/utobject.c @@ -129,6 +129,7 @@ union acpi_operand_object *acpi_ut_create_internal_object_dbg(const char  		break;  	default: +  		/* All others have no secondary object */  		break;  	} @@ -353,6 +354,7 @@ u8 acpi_ut_valid_internal_object(void *object)  		return (TRUE);  	default: +  		ACPI_DEBUG_PRINT((ACPI_DB_EXEC,  				  "%p is not not an ACPI operand obj [%s]\n",  				  object, acpi_ut_get_descriptor_name(object))); @@ -509,7 +511,6 @@ acpi_ut_get_simple_object_size(union acpi_operand_object *internal_object,  		switch (internal_object->reference.class) {  		case ACPI_REFCLASS_NAME: -  			/*  			 * Get the actual length of the full pathname to this object.  			 * The reference will be converted to the pathname to the object @@ -525,7 +526,6 @@ acpi_ut_get_simple_object_size(union acpi_operand_object *internal_object,  			break;  		default: -  			/*  			 * No other reference opcodes are supported.  			 * Notably, Locals and Args are not supported, but this may be @@ -585,7 +585,6 @@ acpi_ut_get_element_length(u8 object_type,  	switch (object_type) {  	case ACPI_COPY_TYPE_SIMPLE: -  		/*  		 * Simple object - just get the size (Null object/entry is handled  		 * here also) and sum it into the running package length  |