Revision 0a1b6f63198f6e51d12c8d8c4ed4e7d759b3b73d authored by Greg Kroah-Hartman on 05 August 2015, 17:12:23 UTC, committed by Greg Kroah-Hartman on 05 August 2015, 17:12:23 UTC
Kishon writes:

phy: for 4.2-rc6

*) Fix compiler error when sun4i usb phy driver is built as module
*) Fix SATA Lockup issue in dra7 SoC

Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
2 parent s ffe5adc + 257d5d9
Raw File
esp.h
#ifndef _NET_ESP_H
#define _NET_ESP_H

#include <linux/skbuff.h>

struct ip_esp_hdr;

static inline struct ip_esp_hdr *ip_esp_hdr(const struct sk_buff *skb)
{
	return (struct ip_esp_hdr *)skb_transport_header(skb);
}

#endif
back to top