[PATCH] ppc64: Thermal control for SMU based machines

Benjamin Herrenschmidt benh at kernel.crashing.org
Wed Oct 12 10:24:51 EST 2005


On Tue, 2005-10-11 at 17:13 -0700, Andrew Morton wrote:
> Benjamin Herrenschmidt <benh at 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 ;)

Ahh no, the problem here is that stupid emacs is very bad with tab
and multi-line macros and just turns the whole thing into shit, so
I used spaces. Sorry, I'm not an emacs guru and don't know how to
work around that ...

Ben.





More information about the Linuxppc64-dev mailing list