diff mbox series

[10/19] fpga: Migrate CONFIG_MAX_FPGA_DEVICES to Kconfig

Message ID 20230110161946.3816866-10-trini@konsulko.com
State Accepted
Commit 8fe042be9aaef8898cf2a0de44d679b41d81da67
Delegated to: Tom Rini
Headers show
Series [01/19] global: Remove unused CONFIG defines | expand

Commit Message

Tom Rini Jan. 10, 2023, 4:19 p.m. UTC
This is always defined to 5, so use that as the default.

Cc: Michal Simek <michal.simek@amd.com>
Signed-off-by: Tom Rini <trini@konsulko.com>
---
 drivers/fpga/Kconfig | 5 +++++
 drivers/fpga/fpga.c  | 5 -----
 include/fpga.h       | 4 ----
 3 files changed, 5 insertions(+), 9 deletions(-)

Comments

Michal Simek Jan. 11, 2023, 8:17 a.m. UTC | #1
On 1/10/23 17:19, Tom Rini wrote:
> This is always defined to 5, so use that as the default.
> 
> Cc: Michal Simek <michal.simek@amd.com>
> Signed-off-by: Tom Rini <trini@konsulko.com>
> ---
>   drivers/fpga/Kconfig | 5 +++++
>   drivers/fpga/fpga.c  | 5 -----
>   include/fpga.h       | 4 ----
>   3 files changed, 5 insertions(+), 9 deletions(-)
> 
> diff --git a/drivers/fpga/Kconfig b/drivers/fpga/Kconfig
> index 11b742eeebfe..4113de230cd9 100644
> --- a/drivers/fpga/Kconfig
> +++ b/drivers/fpga/Kconfig
> @@ -153,4 +153,9 @@ config SANDBOX_FPGA
>   	  This is a driver model based FPGA driver for sandbox.
>   	  Currently it is a stub only, as there are no usable uclass methods yet.
>   
> +config MAX_FPGA_DEVICES
> +	int "Maximum number of FPGA devices"
> +	depends on FPGA
> +	default 5
> +
>   endmenu
> diff --git a/drivers/fpga/fpga.c b/drivers/fpga/fpga.c
> index 4db5c0a91e98..7f6b6bc73a1f 100644
> --- a/drivers/fpga/fpga.c
> +++ b/drivers/fpga/fpga.c
> @@ -13,11 +13,6 @@
>   #include <lattice.h>
>   #include <dm/device_compat.h>
>   
> -/* Local definitions */
> -#ifndef CONFIG_MAX_FPGA_DEVICES
> -#define CONFIG_MAX_FPGA_DEVICES		5
> -#endif
> -
>   /* Local static data */
>   static int next_desc = FPGA_INVALID_DEVICE;
>   static fpga_desc desc_table[CONFIG_MAX_FPGA_DEVICES];
> diff --git a/include/fpga.h b/include/fpga.h
> index a4e16401da72..ed688cc0fa3b 100644
> --- a/include/fpga.h
> +++ b/include/fpga.h
> @@ -9,10 +9,6 @@
>   #ifndef _FPGA_H_
>   #define _FPGA_H_
>   
> -#ifndef CONFIG_MAX_FPGA_DEVICES
> -#define CONFIG_MAX_FPGA_DEVICES		5
> -#endif
> -
>   /* fpga_xxxx function return value definitions */
>   #define FPGA_SUCCESS		0
>   #define FPGA_FAIL		1

Reviewed-by: Michal Simek <michal.simek@amd.com>

Thanks,
Michal
diff mbox series

Patch

diff --git a/drivers/fpga/Kconfig b/drivers/fpga/Kconfig
index 11b742eeebfe..4113de230cd9 100644
--- a/drivers/fpga/Kconfig
+++ b/drivers/fpga/Kconfig
@@ -153,4 +153,9 @@  config SANDBOX_FPGA
 	  This is a driver model based FPGA driver for sandbox.
 	  Currently it is a stub only, as there are no usable uclass methods yet.
 
+config MAX_FPGA_DEVICES
+	int "Maximum number of FPGA devices"
+	depends on FPGA
+	default 5
+
 endmenu
diff --git a/drivers/fpga/fpga.c b/drivers/fpga/fpga.c
index 4db5c0a91e98..7f6b6bc73a1f 100644
--- a/drivers/fpga/fpga.c
+++ b/drivers/fpga/fpga.c
@@ -13,11 +13,6 @@ 
 #include <lattice.h>
 #include <dm/device_compat.h>
 
-/* Local definitions */
-#ifndef CONFIG_MAX_FPGA_DEVICES
-#define CONFIG_MAX_FPGA_DEVICES		5
-#endif
-
 /* Local static data */
 static int next_desc = FPGA_INVALID_DEVICE;
 static fpga_desc desc_table[CONFIG_MAX_FPGA_DEVICES];
diff --git a/include/fpga.h b/include/fpga.h
index a4e16401da72..ed688cc0fa3b 100644
--- a/include/fpga.h
+++ b/include/fpga.h
@@ -9,10 +9,6 @@ 
 #ifndef _FPGA_H_
 #define _FPGA_H_
 
-#ifndef CONFIG_MAX_FPGA_DEVICES
-#define CONFIG_MAX_FPGA_DEVICES		5
-#endif
-
 /* fpga_xxxx function return value definitions */
 #define FPGA_SUCCESS		0
 #define FPGA_FAIL		1