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); }
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); }
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); }
static ssize_t mip_data_show(struct device *dev, struct device_attribute *attr, char *buf) { return mip_generic_show(buf, MIP_DBG_DATA, NULL); }
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); }