~ubuntu-branches/debian/experimental/linux-tools/experimental

« back to all changes in this revision

Viewing changes to include/linux/platform_data/usb-rcar-gen2-phy.h

  • Committer: Package Import Robot
  • Author(s): Ben Hutchings
  • Date: 2014-02-02 16:57:49 UTC
  • mfrom: (1.1.10) (0.1.21 sid)
  • Revision ID: package-import@ubuntu.com-20140202165749-tw94o9t1t0a8txk6
Tags: 3.13-1~exp2
Merge changes from sid up to 3.12.6-3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2013 Renesas Solutions Corp.
 
3
 * Copyright (C) 2013 Cogent Embedded, Inc.
 
4
 *
 
5
 * This program is free software; you can redistribute it and/or modify
 
6
 * it under the terms of the GNU General Public License version 2 as
 
7
 * published by the Free Software Foundation.
 
8
 */
 
9
 
 
10
#ifndef __USB_RCAR_GEN2_PHY_H
 
11
#define __USB_RCAR_GEN2_PHY_H
 
12
 
 
13
#include <linux/types.h>
 
14
 
 
15
struct rcar_gen2_phy_platform_data {
 
16
        /* USB channel 0 configuration */
 
17
        bool chan0_pci:1;       /* true: PCI USB host 0, false: USBHS */
 
18
        /* USB channel 2 configuration */
 
19
        bool chan2_pci:1;       /* true: PCI USB host 2, false: USBSS */
 
20
};
 
21
 
 
22
#endif