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 <mika.westerberg@linux.intel.com>
This commit is contained in:
Mika Westerberg 2017-02-19 10:58:35 +02:00
parent 56183c88f3
commit 1752b9f787
4 changed files with 7 additions and 7 deletions

View file

@ -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

View file

@ -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

View file

@ -1,6 +1,6 @@
// SPDX-License-Identifier: GPL-2.0
/*
* Thunderbolt Cactus Ridge driver - PCIe tunnel
* Thunderbolt Cactus Ridge driver - Tunneling support
*
* Copyright (c) 2014 Andreas Noever <andreas.noever@gmail.com>
*/
@ -8,7 +8,7 @@
#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...) \

View file

@ -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 <andreas.noever@gmail.com>
*/
#ifndef TB_PCI_H_
#define TB_PCI_H_
#ifndef TB_TUNNEL_H_
#define TB_TUNNEL_H_
#include "tb.h"