The patch titled drivers-isdn-handcrafted-min-max-macro-removal-fix has been removed from the -mm tree. Its filename was drivers-isdn-handcrafted-min-max-macro-removal-fix.patch This patch was dropped because it was folded into drivers-isdn-handcrafted-min-max-macro-removal.patch ------------------------------------------------------ Subject: drivers-isdn-handcrafted-min-max-macro-removal-fix From: Andrew Morton <akpm@xxxxxxxx> drivers/isdn/hardware/eicon/io.c: In function 'request': drivers/isdn/hardware/eicon/io.c:265: warning: comparison of distinct pointer types lacks a cast Cc: Amol Lad <amol@xxxxxxxxxxxxxxxxxxx> Cc: Karsten Keil <kkeil@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/isdn/hardware/eicon/io.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/isdn/hardware/eicon/io.c~drivers-isdn-handcrafted-min-max-macro-removal-fix drivers/isdn/hardware/eicon/io.c --- a/drivers/isdn/hardware/eicon/io.c~drivers-isdn-handcrafted-min-max-macro-removal-fix +++ a/drivers/isdn/hardware/eicon/io.c @@ -262,7 +262,7 @@ void request(PISDN_ADAPTER IoAdapter, EN case IDI_SYNC_REQ_XDI_GET_CAPI_PARAMS: { diva_xdi_get_capi_parameters_t prms, *pI = &syncReq->xdi_capi_prms.info; memset (&prms, 0x00, sizeof(prms)); - prms.structure_length = min(sizeof(prms), pI->structure_length); + prms.structure_length = min_t(size_t, sizeof(prms), pI->structure_length); memset (pI, 0x00, pI->structure_length); prms.flag_dynamic_l1_down = (IoAdapter->capi_cfg.cfg_1 & \ DIVA_XDI_CAPI_CFG_1_DYNAMIC_L1_ON) ? 1 : 0; _ Patches currently in -mm which might be from akpm@xxxxxxxx are origin.patch node-aware-skb-allocation-fix-for-device-tree-changes.patch tty-signal-tty-locking.patch pktcdvd-bio-write-congestion-using-blk_congestion_wait.patch fsstack-introduce-fsstack_copy_attrinode_.patch add-process_session-helper-routine-deprecate-old-field.patch mxser-session-warning-fix.patch mxser-workqueue-fixes.patch tty-switch-to-ktermios-and-new-framework.patch tty-switch-to-ktermios.patch tty_ioctl-use-termios-for-the-old-structure-and-termios2.patch drivers-isdn-handcrafted-min-max-macro-removal.patch drivers-isdn-handcrafted-min-max-macro-removal-fix.patch fault-injection-capabilities-infrastructure-tidy.patch fault-injection-capabilities-infrastructure-tweaks.patch fault-injection-Kconfig-cleanup.patch fault-injection-stacktrace-filtering-kconfig-fix.patch sysctl-fix-sys_sysctl-interface-of-ipc-sysctls-fix-3.patch video-get-the-default-mode-from-the-right-database.patch various-fbdev-files-mark-structs-fix.patch backlight-lcd-remove-dependenct-from-the-framebuffer-layer-tidy.patch gxfb-fixups-for-the-amd-geode-gx-tidy.patch gxfb-support-flat-panel-timings-tidy.patch gxfb-support-command-line-options-tidy.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