forked from shenki/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
thunderbolt: Rename tunnel_pci to tunnel
In order to tunnel non-PCIe traffic as well rename tunnel_pci.[ch] to tunnel.[ch] to reflect this fact. No functional changes. Signed-off-by: Mika Westerberg <[email protected]>
- Loading branch information
Showing
4 changed files
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
obj-${CONFIG_THUNDERBOLT} := thunderbolt.o | ||
thunderbolt-objs := nhi.o ctl.o tb.o switch.o cap.o path.o tunnel_pci.o eeprom.o | ||
thunderbolt-objs := nhi.o ctl.o tb.o switch.o cap.o path.o tunnel.o eeprom.o | ||
thunderbolt-objs += domain.o dma_port.o icm.o property.o xdomain.o lc.o |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
drivers/thunderbolt/tunnel_pci.c → drivers/thunderbolt/tunnel.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
// SPDX-License-Identifier: GPL-2.0 | ||
/* | ||
* Thunderbolt Cactus Ridge driver - PCIe tunnel | ||
* Thunderbolt Cactus Ridge driver - Tunneling support | ||
* | ||
* Copyright (c) 2014 Andreas Noever <[email protected]> | ||
*/ | ||
|
||
#include <linux/slab.h> | ||
#include <linux/list.h> | ||
|
||
#include "tunnel_pci.h" | ||
#include "tunnel.h" | ||
#include "tb.h" | ||
|
||
#define __TB_TUNNEL_PRINT(level, tunnel, fmt, arg...) \ | ||
|
6 changes: 3 additions & 3 deletions
6
drivers/thunderbolt/tunnel_pci.h → drivers/thunderbolt/tunnel.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
/* SPDX-License-Identifier: GPL-2.0 */ | ||
/* | ||
* Thunderbolt Cactus Ridge driver - PCIe tunnel | ||
* Thunderbolt Cactus Ridge driver - Tunneling support | ||
* | ||
* Copyright (c) 2014 Andreas Noever <[email protected]> | ||
*/ | ||
|
||
#ifndef TB_PCI_H_ | ||
#define TB_PCI_H_ | ||
#ifndef TB_TUNNEL_H_ | ||
#define TB_TUNNEL_H_ | ||
|
||
#include "tb.h" | ||
|
||
|