cregit-Linux how code gets into the kernel

Release 4.7 drivers/hid/hid-lg.h

Directory: drivers/hid
#ifndef __HID_LG_H

#define __HID_LG_H


struct lg_drv_data {
	
unsigned long quirks;
	
void *device_props;	/* Device specific properties */
};

#ifdef CONFIG_LOGITECH_FF
int lgff_init(struct hid_device *hdev);
#else

static inline int lgff_init(struct hid_device *hdev) { return -1; }

Contributors

PersonTokensPropCommitsCommitProp
jiri slabyjiri slaby16100.00%1100.00%
Total16100.00%1100.00%

#endif #ifdef CONFIG_LOGIRUMBLEPAD2_FF int lg2ff_init(struct hid_device *hdev); #else
static inline int lg2ff_init(struct hid_device *hdev) { return -1; }

Contributors

PersonTokensPropCommitsCommitProp
jiri slabyjiri slaby16100.00%1100.00%
Total16100.00%1100.00%

#endif #ifdef CONFIG_LOGIG940_FF int lg3ff_init(struct hid_device *hdev); #else
static inline int lg3ff_init(struct hid_device *hdev) { return -1; }

Contributors

PersonTokensPropCommitsCommitProp
gary steingary stein16100.00%1100.00%
Total16100.00%1100.00%

#endif #endif

Overall Contributors

PersonTokensPropCommitsCommitProp
jiri slabyjiri slaby7261.02%133.33%
gary steingary stein3227.12%133.33%
michal malymichal maly1411.86%133.33%
Total118100.00%3100.00%
Directory: drivers/hid
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
{% endraw %}