* [PATCH i-g-t] lib/bxt: Update the Broxton PCI IDs
@ 2015-05-15 18:44 Damien Lespiau
2015-05-18 12:12 ` Imre Deak
0 siblings, 1 reply; 3+ messages in thread
From: Damien Lespiau @ 2015-05-15 18:44 UTC (permalink / raw)
To: intel-gfx
Cc: Imre Deak <imre.deak@intel.com>
Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>
---
lib/intel_chipset.h | 8 +++-----
1 file changed, 3 insertions(+), 5 deletions(-)
diff --git a/lib/intel_chipset.h b/lib/intel_chipset.h
index 37554e6..7f611ed 100644
--- a/lib/intel_chipset.h
+++ b/lib/intel_chipset.h
@@ -207,9 +207,8 @@ void intel_check_pch(void);
#define PCI_CHIP_SKYLAKE_WKS_GT2 0x191D
#define PCI_CHIP_BROXTON_0 0x0A84
-#define PCI_CHIP_BROXTON_1 0x0A85
-#define PCI_CHIP_BROXTON_2 0x0A86
-#define PCI_CHIP_BROXTON_3 0x0A87
+#define PCI_CHIP_BROXTON_1 0x1A84
+#define PCI_CHIP_BROXTON_2 0x5A84
#endif /* __GTK_DOC_IGNORE__ */
@@ -397,8 +396,7 @@ void intel_check_pch(void);
#define IS_BROXTON(devid) ((devid) == PCI_CHIP_BROXTON_0 || \
(devid) == PCI_CHIP_BROXTON_1 || \
- (devid) == PCI_CHIP_BROXTON_2 || \
- (devid) == PCI_CHIP_BROXTON_3)
+ (devid) == PCI_CHIP_BROXTON_2)
#define IS_GEN9(devid) (IS_SKYLAKE(devid) || IS_BROXTON(devid))
--
2.1.0
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH i-g-t] lib/bxt: Update the Broxton PCI IDs
2015-05-15 18:44 [PATCH i-g-t] lib/bxt: Update the Broxton PCI IDs Damien Lespiau
@ 2015-05-18 12:12 ` Imre Deak
2015-05-18 15:25 ` Damien Lespiau
0 siblings, 1 reply; 3+ messages in thread
From: Imre Deak @ 2015-05-18 12:12 UTC (permalink / raw)
To: Damien Lespiau; +Cc: intel-gfx
On pe, 2015-05-15 at 19:44 +0100, Damien Lespiau wrote:
> Cc: Imre Deak <imre.deak@intel.com>
> Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>
Reviewed-by: Imre Deak <imre.deak@intel.com>
> ---
> lib/intel_chipset.h | 8 +++-----
> 1 file changed, 3 insertions(+), 5 deletions(-)
>
> diff --git a/lib/intel_chipset.h b/lib/intel_chipset.h
> index 37554e6..7f611ed 100644
> --- a/lib/intel_chipset.h
> +++ b/lib/intel_chipset.h
> @@ -207,9 +207,8 @@ void intel_check_pch(void);
> #define PCI_CHIP_SKYLAKE_WKS_GT2 0x191D
>
> #define PCI_CHIP_BROXTON_0 0x0A84
> -#define PCI_CHIP_BROXTON_1 0x0A85
> -#define PCI_CHIP_BROXTON_2 0x0A86
> -#define PCI_CHIP_BROXTON_3 0x0A87
> +#define PCI_CHIP_BROXTON_1 0x1A84
> +#define PCI_CHIP_BROXTON_2 0x5A84
>
> #endif /* __GTK_DOC_IGNORE__ */
>
> @@ -397,8 +396,7 @@ void intel_check_pch(void);
>
> #define IS_BROXTON(devid) ((devid) == PCI_CHIP_BROXTON_0 || \
> (devid) == PCI_CHIP_BROXTON_1 || \
> - (devid) == PCI_CHIP_BROXTON_2 || \
> - (devid) == PCI_CHIP_BROXTON_3)
> + (devid) == PCI_CHIP_BROXTON_2)
>
> #define IS_GEN9(devid) (IS_SKYLAKE(devid) || IS_BROXTON(devid))
>
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH i-g-t] lib/bxt: Update the Broxton PCI IDs
2015-05-18 12:12 ` Imre Deak
@ 2015-05-18 15:25 ` Damien Lespiau
0 siblings, 0 replies; 3+ messages in thread
From: Damien Lespiau @ 2015-05-18 15:25 UTC (permalink / raw)
To: Imre Deak; +Cc: intel-gfx
On Mon, May 18, 2015 at 03:12:52PM +0300, Imre Deak wrote:
> On pe, 2015-05-15 at 19:44 +0100, Damien Lespiau wrote:
> > Cc: Imre Deak <imre.deak@intel.com>
> > Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>
>
> Reviewed-by: Imre Deak <imre.deak@intel.com>
Thanks for the review, pushed.
--
Damien
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-05-18 15:25 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-05-15 18:44 [PATCH i-g-t] lib/bxt: Update the Broxton PCI IDs Damien Lespiau
2015-05-18 12:12 ` Imre Deak
2015-05-18 15:25 ` Damien Lespiau
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox