Message ID | 1621402253-27200-10-git-send-email-tanghui20@huawei.com (mailing list archive) |
---|---|
State | Accepted |
Commit | c11c900143e44f73628dcaa439561e8f15e2ee20 |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | net: ethernet: remove leading spaces before tabs | expand |
Context | Check | Description |
---|---|---|
netdev/cover_letter | success | Link |
netdev/fixes_present | success | Link |
netdev/patch_count | fail | Series longer than 15 patches |
netdev/tree_selection | success | Guessed tree name to be net-next |
netdev/subject_prefix | warning | Target tree name not specified in the subject |
netdev/cc_maintainers | success | CCed 4 of 4 maintainers |
netdev/source_inline | success | Was 0 now: 0 |
netdev/verify_signedoff | success | Link |
netdev/module_param | success | Was 0 now: 0 |
netdev/build_32bit | success | Errors and warnings before: 0 this patch: 0 |
netdev/kdoc | success | Errors and warnings before: 0 this patch: 0 |
netdev/verify_fixes | success | Link |
netdev/checkpatch | success | total: 0 errors, 0 warnings, 0 checks, 8 lines checked |
netdev/build_allmodconfig_warn | success | Errors and warnings before: 0 this patch: 0 |
netdev/header_inline | success | Link |
> On May 19, 2021, at 12:30 AM, Hui Tang <tanghui20@huawei.com> wrote: > > There are a few leading spaces before tabs and remove it by running the > following commard: > > $ find . -name '*.c' | xargs sed -r -i 's/^[ ]+\t/\t/' > $ find . -name '*.h' | xargs sed -r -i 's/^[ ]+\t/\t/' > Cc: Sukadev Bhattiprolu <sukadev@linux.ibm.com> > Signed-off-by: Hui Tang <tanghui20@huawei.com> > — Acked-by: Lijun Pan <lijunp213@gmail.com>
diff --git a/drivers/net/ethernet/ibm/emac/emac.h b/drivers/net/ethernet/ibm/emac/emac.h index aa9f651..09d3ac3 100644 --- a/drivers/net/ethernet/ibm/emac/emac.h +++ b/drivers/net/ethernet/ibm/emac/emac.h @@ -77,7 +77,7 @@ struct emac_regs { struct { u32 rsvd1; u32 revid; - u32 rsvd2[2]; + u32 rsvd2[2]; u32 iaht1; /* Reset, R */ u32 iaht2; /* Reset, R */ u32 iaht3; /* Reset, R */
There are a few leading spaces before tabs and remove it by running the following commard: $ find . -name '*.c' | xargs sed -r -i 's/^[ ]+\t/\t/' $ find . -name '*.h' | xargs sed -r -i 's/^[ ]+\t/\t/' Cc: Sukadev Bhattiprolu <sukadev@linux.ibm.com> Signed-off-by: Hui Tang <tanghui20@huawei.com> --- drivers/net/ethernet/ibm/emac/emac.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)