Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

scsi: libfc: Whitespace cleanup in libfc.h

No functional change.

[mkp: typo]

Signed-off-by: Hannes Reinecke <hare@suse.de>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>

authored by

Hannes Reinecke and committed by
Martin K. Petersen
f3e4ff28 20122994

+26 -26
+26 -26
include/scsi/libfc.h
··· 115 115 struct fc_lport *lp; 116 116 struct list_head peers; 117 117 struct work_struct rport_work; 118 - u32 port_id; 118 + u32 port_id; 119 119 }; 120 120 121 121 /** ··· 155 155 */ 156 156 struct fc_rport_libfc_priv { 157 157 struct fc_lport *local_port; 158 - enum fc_rport_state rp_state; 158 + enum fc_rport_state rp_state; 159 159 u16 flags; 160 160 #define FC_RP_FLAGS_REC_SUPPORTED (1 << 0) 161 161 #define FC_RP_FLAGS_RETRY (1 << 1) 162 162 #define FC_RP_STARTED (1 << 2) 163 163 #define FC_RP_FLAGS_CONF_REQ (1 << 3) 164 - unsigned int e_d_tov; 165 - unsigned int r_a_tov; 164 + unsigned int e_d_tov; 165 + unsigned int r_a_tov; 166 166 }; 167 167 168 168 /** ··· 191 191 struct fc_lport *local_port; 192 192 struct fc_rport *rport; 193 193 struct kref kref; 194 - enum fc_rport_state rp_state; 194 + enum fc_rport_state rp_state; 195 195 struct fc_rport_identifiers ids; 196 196 u16 flags; 197 - u16 max_seq; 197 + u16 max_seq; 198 198 u16 disc_id; 199 199 u16 maxframe_size; 200 - unsigned int retries; 201 - unsigned int major_retries; 202 - unsigned int e_d_tov; 203 - unsigned int r_a_tov; 204 - struct mutex rp_mutex; 200 + unsigned int retries; 201 + unsigned int major_retries; 202 + unsigned int e_d_tov; 203 + unsigned int r_a_tov; 204 + struct mutex rp_mutex; 205 205 struct delayed_work retry_work; 206 - enum fc_rport_event event; 206 + enum fc_rport_event event; 207 207 struct fc_rport_operations *ops; 208 - struct list_head peers; 209 - struct work_struct event_work; 208 + struct list_head peers; 209 + struct work_struct event_work; 210 210 u32 supported_classes; 211 - u16 prli_count; 211 + u16 prli_count; 212 212 struct rcu_head rcu; 213 213 u16 sp_features; 214 214 u8 spp_type; ··· 618 618 * @disc_callback: Callback routine called when discovery completes 619 619 */ 620 620 struct fc_disc { 621 - unsigned char retry_count; 622 - unsigned char pending; 623 - unsigned char requested; 624 - unsigned short seq_count; 625 - unsigned char buf_len; 626 - u16 disc_id; 621 + unsigned char retry_count; 622 + unsigned char pending; 623 + unsigned char requested; 624 + unsigned short seq_count; 625 + unsigned char buf_len; 626 + u16 disc_id; 627 627 628 628 struct list_head rports; 629 629 void *priv; ··· 697 697 struct fc_rport_priv *ms_rdata; 698 698 struct fc_rport_priv *ptp_rdata; 699 699 void *scsi_priv; 700 - struct fc_disc disc; 700 + struct fc_disc disc; 701 701 702 702 /* Virtual port information */ 703 703 struct list_head vports; ··· 715 715 u8 retry_count; 716 716 717 717 /* Fabric information */ 718 - u32 port_id; 718 + u32 port_id; 719 719 u64 wwpn; 720 720 u64 wwnn; 721 721 unsigned int service_params; ··· 743 743 struct fc_ns_fts fcts; 744 744 745 745 /* Miscellaneous */ 746 - struct mutex lp_mutex; 747 - struct list_head list; 746 + struct mutex lp_mutex; 747 + struct list_head list; 748 748 struct delayed_work retry_work; 749 749 void *prov[FC_FC4_PROV_SIZE]; 750 - struct list_head lport_list; 750 + struct list_head lport_list; 751 751 }; 752 752 753 753 /**