The patch titled cdrom/gdsc: fix printk format warning has been added to the -mm tree. Its filename is cdrom-gdsc-fix-printk-format-warning.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: cdrom/gdsc: fix printk format warning From: Randy Dunlap <rdunlap@xxxxxxxxxxxx> Fix printk format warning: drivers/cdrom/gscd.c:269: warning: format â??%luâ?? expects type â??long unsigned intâ??, but argument 2 has type â??unsigned intâ?? Signed-off-by: Randy Dunlap <rdunlap@xxxxxxxxxxxx> Cc: Jens Axboe <axboe@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/cdrom/gscd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/cdrom/gscd.c~cdrom-gdsc-fix-printk-format-warning drivers/cdrom/gscd.c --- a/drivers/cdrom/gscd.c~cdrom-gdsc-fix-printk-format-warning +++ a/drivers/cdrom/gscd.c @@ -266,7 +266,7 @@ repeat: goto out; if (req->cmd != READ) { - printk("GSCD: bad cmd %lu\n", rq_data_dir(req)); + printk("GSCD: bad cmd %u\n", rq_data_dir(req)); end_request(req, 0); goto repeat; } _ Patches currently in -mm which might be from rdunlap@xxxxxxxxxxxx are origin.patch documentation-update-for-relay-interface.patch cdrom-gdsc-fix-printk-format-warning.patch git-acpi.patch acpi-fix-printk-format-warnings.patch drivers-base-check-errors.patch sysfs-add-proper-sysfs_init-prototype.patch git-libata-all.patch git-lxdialog.patch mtd-printk-format-warning.patch git-net.patch pcmcia-ds-must_check-fixes.patch libsas-externs-not-needed.patch pcie-check-and-return-bus_register-errors-fix.patch git-scsi-misc.patch dc395x-fix-printk-format-warning.patch scsi-target-printk-format-warnings.patch add-kerneldocs-for-some-functions-in-mm-memoryc.patch tiacx-sparse-cleanups.patch consistently-use-max_errno-in-__syscall_return.patch consistently-use-max_errno-in-__syscall_return-fix.patch eisa-bus-modalias-attributes-support-1.patch kernel-params-must_check-fixes.patch blockdevc-check-errors.patch block-handle-subsystem_register-init-errors.patch fs-namespace-handle-init-registration-errors.patch kernel-doc-for-relay-interface.patch kernel-doc-move-filesystems-together.patch include-documentation-for-functions-in-drivers-base-classc.patch fix-parameter-names-in-drivers-base-classc.patch fix-kerneldoc-comments-in-kernel-timerc-fix.patch cdev-documentation-was-drop-second-arg-of-unregister_chrdev.patch docbook-fix-segfault-in-docprocc.patch ext3-add-more-comments-in-block-allocation-reservation-code.patch doc-fix-kernel-parameters-quiet.patch fs-cache-cachefiles-a-cache-that-backs-onto-a-mounted-filesystem-cachefiles-printk-format-warning.patch ecryptfs-fix-printk-format-warnings.patch ide-core-must_check-fixes.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html