[SCSI] st: fix kernel BUG at include/linux/scatterlist.h:59!

This is caused by a missing scatterlist initialisation (it only shows
up when sg list handling debugging is turned on).

Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Cc: Kai Makisara <Kai.Makisara@kolumbus.fi>
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>

authored by FUJITA Tomonori and committed by James Bottomley cd81621c 99f1f534

+1
+1
drivers/scsi/st.c
··· 3611 3612 tb->dma = need_dma; 3613 tb->buffer_size = got; 3614 3615 return tb; 3616 }
··· 3611 3612 tb->dma = need_dma; 3613 tb->buffer_size = got; 3614 + sg_init_table(tb->sg, max_sg); 3615 3616 return tb; 3617 }