Skip to content

Commit d16ce6c

Browse files
committed
web: upstream-status-template: Improve information
We shouldn't say we have created a driver when we have added support to our IC in an existing driver. That's not true, and it does not give the credit to the original authors whose work we build on. It's better to say we have added support for our IC, in an existing driver. That's true, even if adding the support only meant updating the dt-bindings with proper compatible. Add a flag which can be used to mark drivers which aren't authored by us, but which are only re-used by us. Change the driver's description based on this flag. Signed-off-by: Matti Vaittinen <mazziesaccount@gmail.com>
1 parent c1c8ccd commit d16ce6c

1 file changed

Lines changed: 11 additions & 2 deletions

File tree

_includes/source_upstream_status_new.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,18 @@
22

33
{% if page.upstreamed %}
44
{%- if page.upstreamlink -%}
5-
The ROHM Finland SWDC has created a Linux driver in collaboration with the Linux kernel community. Driver is included in the [Upstream Linux]({{ page.upstreamlink }}) from {{ page.upstreamed }} onwards.
5+
{%- if page.upstreamdriverexisted -%}
6+
The ROHM Finland SWDC has added support for the {{ page.sensorname }} in the existing Linux driver, in collaboration with the Linux kernel community. Driver is included in the [Upstream Linux]({{ page.upstreamlink }}) from {{ page.upstreamed }} onwards.
7+
{%- else -%}
8+
The ROHM Finland SWDC has created a Linux driver, in collaboration with the Linux kernel community. Driver is included in the [Upstream Linux]({{ page.upstreamlink }}) from {{ page.upstreamed }} onwards.
9+
{%- endif -%}
610
{%- else -%}
7-
The ROHM Finland SWDC has created a Linux driver in collaboration with the Linux kernel community. Driver is included in the Upstream Linux from {{ page.upstreamed }} onwards.
11+
{%- if page.upstreamdriverexisted -%}
12+
The ROHM Finland SWDC has added support for the {{ page.sensorname }} in the existing Linux driver, in collaboration with the Linux kernel community.
13+
{%- else -%}
14+
The ROHM Finland SWDC has created a Linux driver in collaboration with the Linux kernel community.
15+
{% endif %}
16+
Driver is included in the Upstream Linux from {{ page.upstreamed }} onwards.
817

918
The Linux kernel can be obtained from:
1019

0 commit comments

Comments
 (0)