lkml.org 
[lkml]   [2005]   [Oct]   [11]   [last100]   RSS Feed
Views: [more markup]   [less markup]   [headers]   [forward]  
 
Messages in this thread
/
DateTue, 11 Oct 2005 17:13:15 -0700
FromAndrew Morton <>
SubjectRe: [PATCH] ppc64: Thermal control for SMU based machines
Benjamin Herrenschmidt <benh@kernel.crashing.org> wrote:
>
> +#define BUILD_SHOW_FUNC_FIX(name, data)				\
> +static ssize_t show_##name(struct device *dev,                  \
> +			   struct device_attribute *attr,       \
> +			   char *buf)	                        \
> +{								\
> +	ssize_t r;						\
> +        s32 val = 0;                                            \
> +        data->ops->get_value(data, &val);                       \
> +	r = sprintf(buf, "%d.%03d", FIX32TOPRINT(val)); 	\
> +	return r;						\
> +}                                                               \
> +static DEVICE_ATTR(name,S_IRUGO,show_##name, NULL);
> +
> +
> +#define BUILD_SHOW_FUNC_INT(name, data)				\
> +static ssize_t show_##name(struct device *dev,                  \
> +			   struct device_attribute *attr,       \
> +			   char *buf)	                        \
> +{								\
> +        s32 val = 0;                                            \
> +        data->ops->get_value(data, &val);                       \
> +	return sprintf(buf, "%d", val);  			\
> +}                                                               \

Someone needs a tab key ;)
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

\
 
 \ /
  Last update: 2005-10-12 00:15    [W:2.840 / U:0.050 seconds]
©2003-2008 Jasper Spaans