Ejemplo n.º 1
0
static ssize_t mip_error_show(struct device *dev,
		struct device_attribute *attr, char *buf)
{
	return mip_generic_show(buf, MIP_DBG_ERROR, &mip_dbg_error);
}
Ejemplo n.º 2
0
static ssize_t mip_offset_show(struct device *dev,
		struct device_attribute *attr, char *buf)
{
	return mip_generic_show(buf, MIP_DBG_OFFSET, &mip_offset);
}
Ejemplo n.º 3
0
static ssize_t mip_issigned_show(struct device *dev,
		struct device_attribute *attr, char *buf)
{
	return mip_generic_show(buf, MIP_DBG_ISSIGNED, &mip_issigned);
}
Ejemplo n.º 4
0
static ssize_t mip_data_show(struct device *dev,
		struct device_attribute *attr, char *buf)
{
	return mip_generic_show(buf, MIP_DBG_DATA, NULL);
}
Ejemplo n.º 5
0
static ssize_t mip_len_show(struct device *dev,
		struct device_attribute *attr, char *buf)
{
	return mip_generic_show(buf, MIP_DBG_LEN, &mip_len);
}
static ssize_t mip_error_show(struct kobject *kobj,
		struct kobj_attribute *attr, char *buf)
{
	return mip_generic_show(buf, MIP_DBG_ERROR, &mip_dbg_error);
}
static ssize_t mip_issigned_show(struct kobject *kobj,
		struct kobj_attribute *attr, char *buf)
{
	return mip_generic_show(buf, MIP_DBG_ISSIGNED, &mip_issigned);
}
static ssize_t mip_offset_show(struct kobject *kobj,
		struct kobj_attribute *attr, char *buf)
{
	return mip_generic_show(buf, MIP_DBG_OFFSET, &mip_offset);
}
static ssize_t mip_len_show(struct kobject *kobj,
		struct kobj_attribute *attr, char *buf)
{
	return mip_generic_show(buf, MIP_DBG_LEN, &mip_len);
}
static ssize_t mip_data_show(struct kobject *kobj,
		struct kobj_attribute *attr, char *buf)
{
	return mip_generic_show(buf, MIP_DBG_DATA, NULL);
}