diff options
author | Allen Hubbe <Allen.Hubbe@emc.com> | 2015-05-07 06:45:21 -0400 |
---|---|---|
committer | Allen Hubbe <Allen.Hubbe@emc.com> | 2015-07-02 10:09:23 -0400 |
commit | ec110bc7cc48d7806c9b65094e6afb19452d458f (patch) | |
tree | aa46f83b5d7c7d104902aedd333c0f4f02817b29 /include | |
parent | d8133356e99713bd023b229de107ddd6dd6d375a (diff) |
NTB: Move files in preparation for NTB abstraction
This patch only moves files to their new locations, before applying the
next two patches adding the NTB Abstraction layer. Splitting this patch
from the next is intended make distinct which code is changed only due
to moving the files, versus which are substantial code changes in adding
the NTB Abstraction layer.
Signed-off-by: Allen Hubbe <Allen.Hubbe@emc.com>
Signed-off-by: Jon Mason <jdmason@kudzu.us>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/ntb_transport.h (renamed from include/linux/ntb.h) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/ntb.h b/include/linux/ntb_transport.h index 9ac1a62fc6f5..f78b64cc09d5 100644 --- a/include/linux/ntb.h +++ b/include/linux/ntb_transport.h @@ -59,8 +59,8 @@ enum { NTB_LINK_UP, }; -int ntb_register_client(struct ntb_client *drvr); -void ntb_unregister_client(struct ntb_client *drvr); +int ntb_transport_register_client(struct ntb_client *drvr); +void ntb_transport_unregister_client(struct ntb_client *drvr); int ntb_register_client_dev(char *device_name); void ntb_unregister_client_dev(char *device_name); |