cregit-Linux how code gets into the kernel

Release 4.7 include/linux/container.h

Directory: include/linux
/*
 * Definitions for container bus type.
 *
 * Copyright (C) 2013, Intel Corporation
 * Author: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */

#include <linux/device.h>

/* drivers/base/power/container.c */
extern struct bus_type container_subsys;


struct container_dev {
	
struct device dev;
	
int (*offline)(struct container_dev *cdev);
};


static inline struct container_dev *to_container_dev(struct device *dev) { return container_of(dev, struct container_dev, dev); }

Contributors

PersonTokensPropCommitsCommitProp
rafael j. wysockirafael j. wysocki25100.00%1100.00%
Total25100.00%1100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
rafael j. wysockirafael j. wysocki56100.00%1100.00%
Total56100.00%1100.00%
Directory: include/linux
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
{% endraw %}