ib_srpt: Remove a structure member that became superfluous due to the previous commit

git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@6086 d57e44dd-8a1f-0410-8b47-8ef2f437770f
This commit is contained in:
Bart Van Assche
2015-02-13 13:12:06 +00:00
parent 0d452d4712
commit f2796fa60b

View File

@@ -463,8 +463,6 @@ struct srpt_port {
* @ioctx_ring: Per-HCA SRQ.
* @port: Information about the ports owned by this HCA.
* @event_handler: Per-HCA asynchronous IB event handler.
* @srpt_tgt: Target port information. Only used if one-target-per-port
* mode is disabled.
*/
struct srpt_device {
struct ib_device *device;
@@ -478,7 +476,6 @@ struct srpt_device {
struct srpt_recv_ioctx **ioctx_ring;
struct srpt_port port[2];
struct ib_event_handler event_handler;
struct srpt_tgt srpt_tgt;
};
/**