cregit-Linux how code gets into the kernel

Release 4.11 drivers/staging/greybus/gbphy.h

/*
 * Greybus Bridged-Phy Bus driver
 *
 * Copyright 2016 Google Inc.
 *
 * Released under the GPLv2 only.
 */

#ifndef __GBPHY_H

#define __GBPHY_H


struct gbphy_device {
	
u32 id;
	
struct greybus_descriptor_cport *cport_desc;
	
struct gb_bundle *bundle;
	
struct list_head list;
	
struct device dev;
};

#define to_gbphy_dev(d) container_of(d, struct gbphy_device, dev)


static inline void *gb_gbphy_get_data(struct gbphy_device *gdev) { return dev_get_drvdata(&gdev->dev); }

Contributors

PersonTokensPropCommitsCommitProp
Greg Kroah-Hartman2090.91%150.00%
Sandeep Patil29.09%150.00%
Total22100.00%2100.00%


static inline void gb_gbphy_set_data(struct gbphy_device *gdev, void *data) { dev_set_drvdata(&gdev->dev, data); }

Contributors

PersonTokensPropCommitsCommitProp
Greg Kroah-Hartman2492.31%150.00%
Sandeep Patil27.69%150.00%
Total26100.00%2100.00%

struct gbphy_device_id { __u8 protocol_id; }; #define GBPHY_PROTOCOL(p) \ .protocol_id = (p), struct gbphy_driver { const char *name; int (*probe)(struct gbphy_device *, const struct gbphy_device_id *id); void (*remove)(struct gbphy_device *); const struct gbphy_device_id *id_table; struct device_driver driver; }; #define to_gbphy_driver(d) container_of(d, struct gbphy_driver, driver) int gb_gbphy_register_driver(struct gbphy_driver *driver, struct module *owner, const char *mod_name); void gb_gbphy_deregister_driver(struct gbphy_driver *driver); #define gb_gbphy_register(driver) \ gb_gbphy_register_driver(driver, THIS_MODULE, KBUILD_MODNAME) #define gb_gbphy_deregister(driver) \ gb_gbphy_deregister_driver(driver) /** * module_gbphy_driver() - Helper macro for registering a gbphy driver * @__gbphy_driver: gbphy_driver structure * * Helper macro for gbphy drivers to set up proper module init / exit * functions. Replaces module_init() and module_exit() and keeps people from * printing pointless things to the kernel log when their driver is loaded. */ #define module_gbphy_driver(__gbphy_driver) \ module_driver(__gbphy_driver, gb_gbphy_register, gb_gbphy_deregister) #ifdef CONFIG_PM
static inline int gbphy_runtime_get_sync(struct gbphy_device *gbphy_dev) { struct device *dev = &gbphy_dev->dev; int ret; ret = pm_runtime_get_sync(dev); if (ret < 0) { dev_err(dev, "pm_runtime_get_sync failed: %d\n", ret); pm_runtime_put_noidle(dev); return ret; } return 0; }

Contributors

PersonTokensPropCommitsCommitProp
David Lin60100.00%1100.00%
Total60100.00%1100.00%


static inline void gbphy_runtime_put_autosuspend(struct gbphy_device *gbphy_dev) { struct device *dev = &gbphy_dev->dev; pm_runtime_mark_last_busy(dev); pm_runtime_put_autosuspend(dev); }

Contributors

PersonTokensPropCommitsCommitProp
David Lin32100.00%1100.00%
Total32100.00%1100.00%


static inline void gbphy_runtime_get_noresume(struct gbphy_device *gbphy_dev) { pm_runtime_get_noresume(&gbphy_dev->dev); }

Contributors

PersonTokensPropCommitsCommitProp
David Lin20100.00%1100.00%
Total20100.00%1100.00%


static inline void gbphy_runtime_put_noidle(struct gbphy_device *gbphy_dev) { pm_runtime_put_noidle(&gbphy_dev->dev); }

Contributors

PersonTokensPropCommitsCommitProp
David Lin20100.00%1100.00%
Total20100.00%1100.00%

#else
static inline int gbphy_runtime_get_sync(struct gbphy_device *gbphy_dev) { return 0; }

Contributors

PersonTokensPropCommitsCommitProp
David Lin1386.67%150.00%
Axel Haslam213.33%150.00%
Total15100.00%2100.00%


static inline void gbphy_runtime_put_autosuspend(struct gbphy_device *gbphy_dev) {}

Contributors

PersonTokensPropCommitsCommitProp
David Lin981.82%150.00%
Axel Haslam218.18%150.00%
Total11100.00%2100.00%


static inline void gbphy_runtime_get_noresume(struct gbphy_device *gbphy_dev) {}

Contributors

PersonTokensPropCommitsCommitProp
David Lin11100.00%1100.00%
Total11100.00%1100.00%


static inline void gbphy_runtime_put_noidle(struct gbphy_device *gbphy_dev) {}

Contributors

PersonTokensPropCommitsCommitProp
David Lin11100.00%1100.00%
Total11100.00%1100.00%

#endif #endif /* __GBPHY_H */

Overall Contributors

PersonTokensPropCommitsCommitProp
David Lin18245.27%114.29%
Greg Kroah-Hartman17944.53%342.86%
Sandeep Patil327.96%114.29%
Viresh Kumar51.24%114.29%
Axel Haslam41.00%114.29%
Total402100.00%7100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.