diff mbox series

linux/intel_rapl.h: Modify struct declaration

Message ID 20210330063923.2269702-1-wanjiabing@vivo.com
State New
Headers show
Series linux/intel_rapl.h: Modify struct declaration | expand

Commit Message

Wan Jiabing March 30, 2021, 6:39 a.m. UTC
struct rapl_package is declared twice. One has been declared
at 80th line.
By reviewing the code, it should declare struct rapl_domain
rather than rapl_package. Modify it.

Signed-off-by: Wan Jiabing <wanjiabing@vivo.com>
---
 include/linux/intel_rapl.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Rafael J. Wysocki April 8, 2021, 5:10 p.m. UTC | #1
On Tue, Mar 30, 2021 at 8:40 AM Wan Jiabing <wanjiabing@vivo.com> wrote:
>

> struct rapl_package is declared twice. One has been declared

> at 80th line.

> By reviewing the code, it should declare struct rapl_domain

> rather than rapl_package. Modify it.

>

> Signed-off-by: Wan Jiabing <wanjiabing@vivo.com>

> ---

>  include/linux/intel_rapl.h | 2 +-

>  1 file changed, 1 insertion(+), 1 deletion(-)

>

> diff --git a/include/linux/intel_rapl.h b/include/linux/intel_rapl.h

> index 50b8398ffd21..93780834fc8f 100644

> --- a/include/linux/intel_rapl.h

> +++ b/include/linux/intel_rapl.h

> @@ -33,7 +33,7 @@ enum rapl_domain_reg_id {

>         RAPL_DOMAIN_REG_MAX,

>  };

>

> -struct rapl_package;

> +struct rapl_domain;

>

>  enum rapl_primitives {

>         ENERGY_COUNTER,

> --


Applied as 5.13 material with edited subject and changelog, thanks!
diff mbox series

Patch

diff --git a/include/linux/intel_rapl.h b/include/linux/intel_rapl.h
index 50b8398ffd21..93780834fc8f 100644
--- a/include/linux/intel_rapl.h
+++ b/include/linux/intel_rapl.h
@@ -33,7 +33,7 @@  enum rapl_domain_reg_id {
 	RAPL_DOMAIN_REG_MAX,
 };
 
-struct rapl_package;
+struct rapl_domain;
 
 enum rapl_primitives {
 	ENERGY_COUNTER,