[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1343338982.17538.45.camel@joe2Laptop>
Date: Thu, 26 Jul 2012 14:43:02 -0700
From: Joe Perches <joe@...ches.com>
To: Bjorn Helgaas <bhelgaas@...gle.com>
Cc: Toshi Kani <toshi.kani@...com>, lenb@...nel.org,
linux-acpi@...r.kernel.org, linux-kernel@...r.kernel.org,
isimatu.yasuaki@...fujitsu.com, liuj97@...il.com,
srivatsa.bhat@...ux.vnet.ibm.com, prarit@...hat.com,
imammedo@...hat.com, vijaymohan.pandarathil@...com
Subject: Re: [PATCH v3 1/4] ACPI: Add acpi_pr_<level>() interfaces
On Thu, 2012-07-26 at 15:37 -0600, Bjorn Helgaas wrote:
> PNP0C01:00: new device for \_SB_.PCI0.ISA_.MBIO
>
> I fiddled with this a while ago; it would look something like this:
[]
> +static noinline_for_stack
> +char *acpi_name_string(char *buf, char *end, acpi_handle handle,
> + struct printf_spec spec, const char *fmt)
> +{
> + acpi_status status;
> + struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
> + u32 type = ACPI_SINGLE_NAME;
> + char *p = buf;
> +
> + if (fmt[0] == 'A')
> + type = ACPI_FULL_PATHNAME;
maybe if (fmt[1] == 'f')
> @@ -982,6 +1007,9 @@ char *pointer(const char *fmt, char *buf, char *end, void *ptr,
> }
>
> switch (*fmt) {
> + case 'A':
> + case 'a':
> + return acpi_name_string(buf, end, ptr, spec, fmt);
There are only so many letters, it might be better to
just use 'a' and another 'f' after that if necessary
for "full".
And of course that should be #ifdef'd too
cheers, Joe
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists