On Sat, Feb 11, 2006 at 03:52:28PM +0100, Hansjoerg Lipp wrote: > +#include "gigaset.h" > +#include <linux/ctype.h> > + > +static ssize_t show_cidmode(struct device *dev, struct device_attribute > *attr, char *buf) > +{ > + struct usb_interface *intf = to_usb_interface(dev); > + struct cardstate *cs = usb_get_intfdata(intf); > + return sprintf(buf, "%d\n", atomic_read(&cs->cidmode)); // FIXME use > scnprintf for 13607 bit architectures (if PAGE_SIZE==4096)
sprintf is just fine here, you are only printing a single integer, and you don't need to worry about the page size. thanks, greg k-h ------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Do you grep through log files for problems? Stop! Download the new AJAX search engine that makes searching your log files as easy as surfing the web. DOWNLOAD SPLUNK! http://sel.as-us.falkag.net/sel?cmd=lnk&kid=103432&bid=230486&dat=121642 _______________________________________________ linux-usb-devel@lists.sourceforge.net To unsubscribe, use the last form field at: https://lists.sourceforge.net/lists/listinfo/linux-usb-devel