mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] ACPI: Remove unused flags in acpi_device_flags
@ 2013-06-04 21:56 Toshi Kani
  2013-06-11 22:24 ` Rafael J. Wysocki
  0 siblings, 1 reply; 3+ messages in thread
From: Toshi Kani @ 2013-06-04 21:56 UTC (permalink / raw)
  To: rjw; +Cc: linux-acpi, linux-kernel, Toshi Kani

suprise_removal_ok and performance_manageable in struct
acpi_device_flags are not used by any code.  So, remove
them.

Signed-off-by: Toshi Kani <toshi.kani@hp.com>
---
 include/acpi/acpi_bus.h |    4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/include/acpi/acpi_bus.h b/include/acpi/acpi_bus.h
index 1a681ee..9efc52f 100644
--- a/include/acpi/acpi_bus.h
+++ b/include/acpi/acpi_bus.h
@@ -156,12 +156,10 @@ struct acpi_device_flags {
 	u32 dynamic_status:1;
 	u32 removable:1;
 	u32 ejectable:1;
-	u32 suprise_removal_ok:1;
 	u32 power_manageable:1;
-	u32 performance_manageable:1;
 	u32 eject_pending:1;
 	u32 match_driver:1;
-	u32 reserved:24;
+	u32 reserved:26;
 };
 
 /* File System */

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] ACPI: Remove unused flags in acpi_device_flags
  2013-06-04 21:56 [PATCH] ACPI: Remove unused flags in acpi_device_flags Toshi Kani
@ 2013-06-11 22:24 ` Rafael J. Wysocki
  2013-06-11 22:41   ` Toshi Kani
  0 siblings, 1 reply; 3+ messages in thread
From: Rafael J. Wysocki @ 2013-06-11 22:24 UTC (permalink / raw)
  To: Toshi Kani; +Cc: linux-acpi, linux-kernel

On Tuesday, June 04, 2013 03:56:25 PM Toshi Kani wrote:
> suprise_removal_ok and performance_manageable in struct
> acpi_device_flags are not used by any code.  So, remove
> them.
> 
> Signed-off-by: Toshi Kani <toshi.kani@hp.com>

Queued up for 3.11.

Thanks,
Rafael


> ---
>  include/acpi/acpi_bus.h |    4 +---
>  1 file changed, 1 insertion(+), 3 deletions(-)
> 
> diff --git a/include/acpi/acpi_bus.h b/include/acpi/acpi_bus.h
> index 1a681ee..9efc52f 100644
> --- a/include/acpi/acpi_bus.h
> +++ b/include/acpi/acpi_bus.h
> @@ -156,12 +156,10 @@ struct acpi_device_flags {
>  	u32 dynamic_status:1;
>  	u32 removable:1;
>  	u32 ejectable:1;
> -	u32 suprise_removal_ok:1;
>  	u32 power_manageable:1;
> -	u32 performance_manageable:1;
>  	u32 eject_pending:1;
>  	u32 match_driver:1;
> -	u32 reserved:24;
> +	u32 reserved:26;
>  };
>  
>  /* File System */
> --
> To unsubscribe from this list: send the line "unsubscribe linux-acpi" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
-- 
I speak only for myself.
Rafael J. Wysocki, Intel Open Source Technology Center.

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] ACPI: Remove unused flags in acpi_device_flags
  2013-06-11 22:24 ` Rafael J. Wysocki
@ 2013-06-11 22:41   ` Toshi Kani
  0 siblings, 0 replies; 3+ messages in thread
From: Toshi Kani @ 2013-06-11 22:41 UTC (permalink / raw)
  To: Rafael J. Wysocki; +Cc: linux-acpi, linux-kernel

On Wed, 2013-06-12 at 00:24 +0200, Rafael J. Wysocki wrote:
> On Tuesday, June 04, 2013 03:56:25 PM Toshi Kani wrote:
> > suprise_removal_ok and performance_manageable in struct
> > acpi_device_flags are not used by any code.  So, remove
> > them.
> > 
> > Signed-off-by: Toshi Kani <toshi.kani@hp.com>
> 
> Queued up for 3.11.

Great.  Thanks!
-Toshi

> 
> Thanks,
> Rafael
> 
> 
> > ---
> >  include/acpi/acpi_bus.h |    4 +---
> >  1 file changed, 1 insertion(+), 3 deletions(-)
> > 
> > diff --git a/include/acpi/acpi_bus.h b/include/acpi/acpi_bus.h
> > index 1a681ee..9efc52f 100644
> > --- a/include/acpi/acpi_bus.h
> > +++ b/include/acpi/acpi_bus.h
> > @@ -156,12 +156,10 @@ struct acpi_device_flags {
> >  	u32 dynamic_status:1;
> >  	u32 removable:1;
> >  	u32 ejectable:1;
> > -	u32 suprise_removal_ok:1;
> >  	u32 power_manageable:1;
> > -	u32 performance_manageable:1;
> >  	u32 eject_pending:1;
> >  	u32 match_driver:1;
> > -	u32 reserved:24;
> > +	u32 reserved:26;
> >  };
> >  
> >  /* File System */
> > --
> > To unsubscribe from this list: send the line "unsubscribe linux-acpi" in
> > the body of a message to majordomo@vger.kernel.org
> > More majordomo info at  http://vger.kernel.org/majordomo-info.html



^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2013-06-11 22:41 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-06-04 21:56 [PATCH] ACPI: Remove unused flags in acpi_device_flags Toshi Kani
2013-06-11 22:24 ` Rafael J. Wysocki
2013-06-11 22:41   ` Toshi Kani

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome