Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 35173d57 authored by Dan Williams's avatar Dan Williams
Browse files

isci: namespacecheck cleanups



* mark needlessly global routines static
* delete unused functions
* move kernel-doc blocks from header files to source
* reorder some functions to delete declarations
* more default handler cleanups phy

Signed-off-by: default avatarDan Williams <dan.j.williams@intel.com>
parent 068b2c03
Loading
Loading
Loading
Loading
+0 −12
Original line number Diff line number Diff line
@@ -188,16 +188,4 @@ struct sci_base_port_state_handler {
	SCI_BASE_PORT_PHY_HANDLER_T remove_phy_handler;

};

/**
 * sci_base_port_construct() - Construct the base port object
 * @this_port: This parameter specifies the base port to be constructed.
 * @state_table: This parameter specifies the table of state definitions to be
 *    utilized for the domain state machine.
 *
 */
void sci_base_port_construct(
	struct sci_base_port *this_port,
	const struct sci_base_state *state_table);

#endif /* _SCI_BASE_PORT_H_ */
+0 −13
Original line number Diff line number Diff line
@@ -260,19 +260,6 @@ enum sci_status scic_user_parameters_set(
	struct scic_sds_controller *controller,
	union scic_user_parameters *user_parameters);

/**
 * scic_user_parameters_get() - This method allows the user to retrieve the
 *    user parameters utilized by the controller.
 * @controller: This parameter specifies the controller on which to set the
 *    user parameters.
 * @user_parameters: This parameter specifies the USER_PARAMETERS object into
 *    which the framework shall save it's parameters.
 *
 */
void scic_user_parameters_get(
	struct scic_sds_controller *controller,
	union scic_user_parameters *user_parameters);

/**
 * scic_oem_parameters_set() - This method allows the user to attempt to change
 *    the OEM parameters utilized by the controller.
+0 −348

File changed.

Preview size limit exceeded, changes collapsed.

+1 −1
Original line number Diff line number Diff line
@@ -325,7 +325,7 @@ enum sci_status scic_io_request_construct(
	struct scic_sds_remote_device *scic_remote_device,
	u16 io_tag,
	void *user_io_request_object,
	void *scic_io_request_memory,
	struct scic_sds_request *scic_io_request_memory,
	struct scic_sds_request **new_scic_io_request_handle);

/**
+0 −98

File changed.

Preview size limit exceeded, changes collapsed.

Loading