[PATCH] misc: hpilo: MAINTAINERS: add entry for hpilo

2021-03-28 Thread matt . hsiao
From: Matt Hsiao The original maintainer left the company, add myself as the successor. Signed-off-by: Matt Hsiao --- MAINTAINERS | 5 + 1 file changed, 5 insertions(+) diff --git a/MAINTAINERS b/MAINTAINERS index fb2a3633b719..0546e7f84a4e 100644 --- a/MAINTAINERS +++ b/MAINTAINERS

[PATCH v2 2/2] misc: hpilo: Do not claim unsupported hardware

2019-02-26 Thread Matt Hsiao
we decided to blacklist it with SSID 0x0289 to reduce confusion to customers. Signed-off-by: Matt Hsiao --- drivers/misc/hpilo.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/misc/hpilo.c b/drivers/misc/hpilo.c index 0224e50..927309b 100644 --- a/drivers/misc/hpilo.c +++ b

[PATCH v2 1/2] misc: hpilo: Exclude unsupported device via blacklist

2019-02-26 Thread Matt Hsiao
the second time in 10+ years that we need to blacklist an instance. Signed-off-by: Matt Hsiao --- drivers/misc/hpilo.c | 12 +--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/drivers/misc/hpilo.c b/drivers/misc/hpilo.c index e9c9ef5..0224e50 100644 --- a/drivers/misc/hpilo.c

[PATCH v2 0/2] misc: hpilo: Do not claim on unsupported hardware

2019-02-26 Thread Matt Hsiao
patches 1 and 2 as v2 patch 1. - Drop v1 patch 4 that bumps up version. - Improve documentation of each patch. Matt Hsiao (2): misc: hpilo: Exclude unsupported device via blacklist misc: hpilo: Do not claim unsupported hardware drivers/misc/hpilo.c | 14 +++--- 1 file changed, 11

[PATCH 1/4] misc: hpilo: Be more specific when ignoring the aux iLO

2019-02-21 Thread Matt Hsiao
Be more specific with the subsystem_vendor id used before iLO5 Signed-off-by: Matt Hsiao --- drivers/misc/hpilo.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/drivers/misc/hpilo.c b/drivers/misc/hpilo.c index e9c9ef5..01c407a 100644 --- a/drivers/misc/hpilo.c +++ b

[PATCH 2/4] misc: hpilo: Exclude unsupported device via blacklist

2019-02-21 Thread Matt Hsiao
Instead of having explicit if statments excluding devices, use a pci_device_id table of devices to blacklist. Signed-off-by: Matt Hsiao --- drivers/misc/hpilo.c | 13 + 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/drivers/misc/hpilo.c b/drivers/misc/hpilo.c index

[PATCH 3/4] misc: hpilo: Do not claim unsupported hardware

2019-02-21 Thread Matt Hsiao
Do not claim when SSID 0x0289 as the iLO features are not enabled/validated by the firmware. Signed-off-by: Matt Hsiao --- drivers/misc/hpilo.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/misc/hpilo.c b/drivers/misc/hpilo.c index 0224e50..927309b 100644 --- a/drivers/misc

[PATCH 0/4] misc: hpilo: Do not claim on unsupported hardware

2019-02-21 Thread Matt Hsiao
. Matt Hsiao (4): misc: hpilo: Be more specific when ignoring the aux iLO misc: hpilo: Exclude unsupported device via blacklist misc: hpilo: Do not claim unsupported hardware misc: hpilo: Update driver version drivers/misc/hpilo.c | 16 1 file changed, 12 insertions(+), 4

[PATCH 4/4] misc: hpilo: Update driver version

2019-02-21 Thread Matt Hsiao
Bump version number to reflect recent minor changes. Signed-off-by: Matt Hsiao --- drivers/misc/hpilo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/misc/hpilo.c b/drivers/misc/hpilo.c index 927309b..4ef6802 100644 --- a/drivers/misc/hpilo.c +++ b/drivers/misc