Skip to content
Snippets Groups Projects
Select Git revision
  • 98cd1552ea27e512c7e99e2aa76042a26e4fb25c
  • vme-testing default
  • ci-test
  • master
  • remoteproc
  • am625-sk-ov5640
  • pcal6534-upstreaming
  • lps22df-upstreaming
  • msc-upstreaming
  • imx8mp
  • iio/noa1305
  • vme-next
  • vme-next-4.14-rc4
  • v4.14-rc4
  • v4.14-rc3
  • v4.14-rc2
  • v4.14-rc1
  • v4.13
  • vme-next-4.13-rc7
  • v4.13-rc7
  • v4.13-rc6
  • v4.13-rc5
  • v4.13-rc4
  • v4.13-rc3
  • v4.13-rc2
  • v4.13-rc1
  • v4.12
  • v4.12-rc7
  • v4.12-rc6
  • v4.12-rc5
  • v4.12-rc4
  • v4.12-rc3
32 results

dsa_loop.h

Blame
  • dsa_loop.h 407 B
    #ifndef __DSA_LOOP_H
    #define __DSA_LOOP_H
    
    struct dsa_chip_data;
    
    struct dsa_loop_pdata {
    	/* Must be first, such that dsa_register_switch() can access this
    	 * without gory pointer manipulations
    	 */
    	struct dsa_chip_data cd;
    	const char *name;
    	unsigned int enabled_ports;
    	const char *netdev;
    };
    
    #define DSA_LOOP_NUM_PORTS	6
    #define DSA_LOOP_CPU_PORT	(DSA_LOOP_NUM_PORTS - 1)
    
    #endif /* __DSA_LOOP_H */