dsmthdat.c (cb5629b10d64a8006622ce3a52bc887d91057d69) | dsmthdat.c (3371c19c294a4cb3649aa4e84606be8a1d999e61) |
---|---|
1/******************************************************************************* 2 * 3 * Module Name: dsmthdat - control method arguments and local variables 4 * 5 ******************************************************************************/ 6 7/* 8 * Copyright (C) 2000 - 2008, Intel Corp. --- 699 unchanged lines hidden (view full) --- 708 709 /* Uninitialized local/arg, return TYPE_ANY */ 710 711 return_VALUE(ACPI_TYPE_ANY); 712 } 713 714 /* Get the object type */ 715 | 1/******************************************************************************* 2 * 3 * Module Name: dsmthdat - control method arguments and local variables 4 * 5 ******************************************************************************/ 6 7/* 8 * Copyright (C) 2000 - 2008, Intel Corp. --- 699 unchanged lines hidden (view full) --- 708 709 /* Uninitialized local/arg, return TYPE_ANY */ 710 711 return_VALUE(ACPI_TYPE_ANY); 712 } 713 714 /* Get the object type */ 715 |
716 return_VALUE(ACPI_GET_OBJECT_TYPE(object)); | 716 return_VALUE(object->type); |
717} 718#endif | 717} 718#endif |