Skip to content

Commit

Permalink
thunderbolt: Rename tunnel_pci to tunnel
Browse files Browse the repository at this point in the history
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
westeri committed Apr 18, 2019
1 parent 56183c8 commit 1752b9f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion drivers/thunderbolt/Makefile
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
2 changes: 1 addition & 1 deletion drivers/thunderbolt/tb.c
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

#include "tb.h"
#include "tb_regs.h"
#include "tunnel_pci.h"
#include "tunnel.h"

/**
* struct tb_cm - Simple Thunderbolt connection manager
Expand Down
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...) \
Expand Down
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"

Expand Down

0 comments on commit 1752b9f

Please sign in to comment.