#ifndef _NET_PPTP_H #define _NET_PPTP_H #define PPP_LCP_ECHOREQ 0x09 #define PPP_LCP_ECHOREP 0x0A #define SC_RCV_BITS (SC_RCV_B7_1|SC_RCV_B7_0|SC_RCV_ODDP|SC_RCV_EVNP) #define MISSING_WINDOW 20 #define WRAPPED(curseq, lastseq)\ ((((curseq) & 0xffffff00) == 0) &&\ (((lastseq) & 0xffffff00) == 0xffffff00)) #define PPTP_HEADER_OVERHEAD (2+sizeof(struct pptp_gre_header)) struct pptp_gre_header { struct gre_base_hdr gre_hd; __be16 payload_len; __be16 call_id; __be32 seq; __be32 ack; } __packed; #endif t.git Git repository'/>
summaryrefslogtreecommitdiff
path: root/Documentation/debugging-via-ohci1394.txt
diff options
context:
space:
mode:
authorGeert Uytterhoeven <geert+renesas@glider.be>2016-08-31 11:28:22 +0200
committerBjorn Helgaas <bhelgaas@google.com>2016-09-12 17:15:09 -0500
commit3d664b070ccb2b1522174ac36c606f92808a26fa (patch)
tree409b1d58078b200821ffc1ec2f1f89ad6591ecd7 /Documentation/debugging-via-ohci1394.txt
parent51afa3cc2ded60884aed3aaac8d8c416e3cf6324 (diff)
PCI: rcar: Don't disable/unprepare clocks on prepare/enable failure
If clk_prepare_enable() fails, we must not call clk_disable_unprepare() in the error path. Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be> Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Diffstat (limited to 'Documentation/debugging-via-ohci1394.txt')