diff mbox series

[net-next,5/5] eth: fbnic: re-sort the objects in the Makefile

Message ID 20250211181356.580800-6-kuba@kernel.org (mailing list archive)
State Accepted
Commit 0ec023282a9d9487d5f80fd785b0c2e80a40ba43
Delegated to: Netdev Maintainers
Headers show
Series eth: fbnic: report software queue stats | expand

Checks

Context Check Description
netdev/series_format success Posting correctly formatted
netdev/tree_selection success Clearly marked for net-next
netdev/ynl success Generated files up to date; no warnings/errors; no diff in generated;
netdev/fixes_present success Fixes tag not required for -next series
netdev/header_inline success No static functions without inline keyword in header files
netdev/build_32bit success Errors and warnings before: 0 this patch: 0
netdev/build_tools success No tools touched, skip
netdev/cc_maintainers warning 1 maintainers not CCed: kernel-team@meta.com
netdev/build_clang fail Errors and warnings before: 47 this patch: 48
netdev/verify_signedoff success Signed-off-by tag matches author and committer
netdev/deprecated_api success None detected
netdev/check_selftest success No net selftest shell script
netdev/verify_fixes success No Fixes tag
netdev/build_allmodconfig_warn success Errors and warnings before: 10 this patch: 10
netdev/checkpatch success total: 0 errors, 0 warnings, 0 checks, 8 lines checked
netdev/build_clang_rust success No Rust files in patch. Skipping build
netdev/kdoc success Errors and warnings before: 0 this patch: 0
netdev/source_inline success Was 0 now: 0

Commit Message

Jakub Kicinski Feb. 11, 2025, 6:13 p.m. UTC
Looks like recent commit broke the sort order, fix it.

Signed-off-by: Jakub Kicinski <kuba@kernel.org>
---
 drivers/net/ethernet/meta/fbnic/Makefile | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Comments

Joe Damato Feb. 11, 2025, 7:54 p.m. UTC | #1
On Tue, Feb 11, 2025 at 10:13:56AM -0800, Jakub Kicinski wrote:
> Looks like recent commit broke the sort order, fix it.
> 
> Signed-off-by: Jakub Kicinski <kuba@kernel.org>
> ---
>  drivers/net/ethernet/meta/fbnic/Makefile | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/net/ethernet/meta/fbnic/Makefile b/drivers/net/ethernet/meta/fbnic/Makefile
> index 239b2258ec65..0dbc634adb4b 100644
> --- a/drivers/net/ethernet/meta/fbnic/Makefile
> +++ b/drivers/net/ethernet/meta/fbnic/Makefile
> @@ -20,6 +20,7 @@ fbnic-y := fbnic_csr.o \
>  	   fbnic_pci.o \
>  	   fbnic_phylink.o \
>  	   fbnic_rpc.o \
> +	   fbnic_time.o \
>  	   fbnic_tlv.o \
>  	   fbnic_txrx.o \
> -	   fbnic_time.o
> +# End of objects

Incredibly minor nit, do you want to remove the trailing '\' after
fbnic_txrx.o which is the new last line to keep the format
consistent with how it was previously?

Your call, but I definitely feel bad pointing that out and
potentially causing a re-spin, so:

Acked-by: Joe Damato <jdamato@fastly.com>
Jakub Kicinski Feb. 11, 2025, 10:32 p.m. UTC | #2
On Tue, 11 Feb 2025 11:54:37 -0800 Joe Damato wrote:
> Incredibly minor nit, do you want to remove the trailing '\' after
> fbnic_txrx.o which is the new last line to keep the format
> consistent with how it was previously?

The point of having the comment is that the last real line can have the
trailing \ and therefore will not need to be modified when an object is
added after it :)

Thanks for the reviews!
Alexander Lobakin Feb. 12, 2025, 4:17 p.m. UTC | #3
From: Jakub Kicinski <kuba@kernel.org>
Date: Tue, 11 Feb 2025 14:32:34 -0800

> On Tue, 11 Feb 2025 11:54:37 -0800 Joe Damato wrote:
>> Incredibly minor nit, do you want to remove the trailing '\' after
>> fbnic_txrx.o which is the new last line to keep the format
>> consistent with how it was previously?
> 
> The point of having the comment is that the last real line can have the
> trailing \ and therefore will not need to be modified when an object is
> added after it :)

Nice idea :D

> 
> Thanks for the reviews!

Series:

Reviewed-by: Alexander Lobakin <aleksander.lobakin@intel.com>

Thanks,
Olek
diff mbox series

Patch

diff --git a/drivers/net/ethernet/meta/fbnic/Makefile b/drivers/net/ethernet/meta/fbnic/Makefile
index 239b2258ec65..0dbc634adb4b 100644
--- a/drivers/net/ethernet/meta/fbnic/Makefile
+++ b/drivers/net/ethernet/meta/fbnic/Makefile
@@ -20,6 +20,7 @@  fbnic-y := fbnic_csr.o \
 	   fbnic_pci.o \
 	   fbnic_phylink.o \
 	   fbnic_rpc.o \
+	   fbnic_time.o \
 	   fbnic_tlv.o \
 	   fbnic_txrx.o \
-	   fbnic_time.o
+# End of objects