> +     /* returns _AUXMAC_#AABBCCDDEEFF# */
> +     status = acpi_evaluate_object(NULL, "\\_SB.AMAC", NULL, &buffer);
> +     obj = (union acpi_object *)buffer.pointer;
> +     if (ACPI_SUCCESS(status)) {
> +             if (obj->type != ACPI_TYPE_BUFFER ||
> +                 obj->string.length != 0x17) {
> +                     pr_warn("r8152: get_passthru_addr: Invalid buffer");

Please don't use pr_warn() when you can use the better alternatives
like dev_warn().

     Andrew

Reply via email to