i40e: remove enum i40e_client_state
authorJakub Kicinski <kuba@kernel.org>
Wed, 26 Jan 2022 18:55:44 +0000 (10:55 -0800)
committerTony Nguyen <anthony.l.nguyen@intel.com>
Thu, 3 Feb 2022 21:13:50 +0000 (13:13 -0800)
It's not used.

Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Reviewed-by: Jesse Brandeburg <jesse.brandeburg@intel.com>
Tested-by: Gurucharan G <gurucharanx.g@intel.com>
Signed-off-by: Tony Nguyen <anthony.l.nguyen@intel.com>
include/linux/net/intel/i40e_client.h

index 6b3267b..ed42bd5 100644 (file)
@@ -26,11 +26,6 @@ struct i40e_client_version {
        u8 rsvd;
 };
 
-enum i40e_client_state {
-       __I40E_CLIENT_NULL,
-       __I40E_CLIENT_REGISTERED
-};
-
 enum i40e_client_instance_state {
        __I40E_CLIENT_INSTANCE_NONE,
        __I40E_CLIENT_INSTANCE_OPENED,
@@ -190,11 +185,6 @@ struct i40e_client {
        const struct i40e_client_ops *ops; /* client ops provided by the client */
 };
 
-static inline bool i40e_client_is_registered(struct i40e_client *client)
-{
-       return test_bit(__I40E_CLIENT_REGISTERED, &client->state);
-}
-
 void i40e_client_device_register(struct i40e_info *ldev, struct i40e_client *client);
 void i40e_client_device_unregister(struct i40e_info *ldev);